pub trait IUnitAI_MoveLimitRangeMethods: IUnitAI_MoveLimitRange {
Show 14 methods
// Provided methods
fn get_type(self) -> UnitAI_MoveLimitRange_LimitType { ... }
fn set_type(self, value: impl Into<UnitAI_MoveLimitRange_LimitType>) { ... }
fn get_x(self) -> i32 { ... }
fn set_x(self, value: impl Into<i32>) { ... }
fn get_z(self) -> i32 { ... }
fn set_z(self, value: impl Into<i32>) { ... }
fn get_w(self) -> i32 { ... }
fn set_w(self, value: impl Into<i32>) { ... }
fn get_h(self) -> i32 { ... }
fn set_h(self, value: impl Into<i32>) { ... }
fn clear(self) { ... }
fn serialize(self, stream: impl Into<Stream_2>) { ... }
fn deserialize(self, stream: impl Into<Stream_2>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_type(self) -> UnitAI_MoveLimitRange_LimitType
fn get_type(self) -> UnitAI_MoveLimitRange_LimitType
get_Type() overload
Sourcefn set_type(self, value: impl Into<UnitAI_MoveLimitRange_LimitType>)
fn set_type(self, value: impl Into<UnitAI_MoveLimitRange_LimitType>)
set_Type(crate::app::unitai::UnitAI_MoveLimitRange_LimitType) overload
Sourcefn serialize(self, stream: impl Into<Stream_2>)
fn serialize(self, stream: impl Into<Stream_2>)
Serialize(crate::app::stream_2::Stream_2) overload
Sourcefn deserialize(self, stream: impl Into<Stream_2>)
fn deserialize(self, stream: impl Into<Stream_2>)
Deserialize(crate::app::stream_2::Stream_2) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IUnitAI_MoveLimitRange> IUnitAI_MoveLimitRangeMethods for __T
Available on crate feature
app-unitai only.