pub trait IMapTarget_DataMethods: IMapTarget_Data {
Show 21 methods
// Provided methods
fn set(
self,
unit: impl Into<Unit>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data { ... }
fn set_2(
self,
unit: impl Into<Unit>,
x: impl Into<i32>,
z: impl Into<i32>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data { ... }
fn set_3(
self,
x: impl Into<i32>,
z: impl Into<i32>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data { ... }
fn set_rect(
self,
x1: impl Into<i32>,
z1: impl Into<i32>,
x2: impl Into<i32>,
z2: impl Into<i32>,
) -> MapTarget_Data { ... }
fn get_index(self) -> i32 { ... }
fn set_index(self, value: impl Into<i32>) { ... }
fn get_unit(self) -> Unit { ... }
fn get_x(self) -> i32 { ... }
fn get_z(self) -> i32 { ... }
fn get_x1(self) -> i32 { ... }
fn get_z1(self) -> i32 { ... }
fn get_x2(self) -> i32 { ... }
fn get_z2(self) -> i32 { ... }
fn get_item_mask(self) -> u32 { ... }
fn get_select_item_index(self) -> i32 { ... }
fn set_select_item_index(self, value: impl Into<i32>) { ... }
fn check_item_mask(self, index: impl Into<i32>) -> bool { ... }
fn is_out_side(self, x: impl Into<i32>, z: impl Into<i32>) -> bool { ... }
fn copy_from(self, from: impl Into<MapTarget_Data>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set(
self,
unit: impl Into<Unit>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data
fn set( self, unit: impl Into<Unit>, item_mask: impl Into<u32>, select_item_index: impl Into<i32>, ) -> MapTarget_Data
Set(crate::app::unit::Unit, u32, i32) overload
Sourcefn set_2(
self,
unit: impl Into<Unit>,
x: impl Into<i32>,
z: impl Into<i32>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data
fn set_2( self, unit: impl Into<Unit>, x: impl Into<i32>, z: impl Into<i32>, item_mask: impl Into<u32>, select_item_index: impl Into<i32>, ) -> MapTarget_Data
Set(crate::app::unit::Unit, i32, i32, u32, i32) overload
Sourcefn set_3(
self,
x: impl Into<i32>,
z: impl Into<i32>,
item_mask: impl Into<u32>,
select_item_index: impl Into<i32>,
) -> MapTarget_Data
fn set_3( self, x: impl Into<i32>, z: impl Into<i32>, item_mask: impl Into<u32>, select_item_index: impl Into<i32>, ) -> MapTarget_Data
Set(i32, i32, u32, i32) overload
Sourcefn set_rect(
self,
x1: impl Into<i32>,
z1: impl Into<i32>,
x2: impl Into<i32>,
z2: impl Into<i32>,
) -> MapTarget_Data
fn set_rect( self, x1: impl Into<i32>, z1: impl Into<i32>, x2: impl Into<i32>, z2: impl Into<i32>, ) -> MapTarget_Data
SetRect(i32, i32, i32, i32) overload
Sourcefn get_item_mask(self) -> u32
fn get_item_mask(self) -> u32
get_ItemMask() overload
Sourcefn get_select_item_index(self) -> i32
fn get_select_item_index(self) -> i32
get_SelectItemIndex() overload
Sourcefn set_select_item_index(self, value: impl Into<i32>)
fn set_select_item_index(self, value: impl Into<i32>)
set_SelectItemIndex(i32) overload
Sourcefn check_item_mask(self, index: impl Into<i32>) -> bool
fn check_item_mask(self, index: impl Into<i32>) -> bool
CheckItemMask(i32) overload
Sourcefn is_out_side(self, x: impl Into<i32>, z: impl Into<i32>) -> bool
fn is_out_side(self, x: impl Into<i32>, z: impl Into<i32>) -> bool
IsOutSide(i32, i32) overload
Sourcefn copy_from(self, from: impl Into<MapTarget_Data>)
fn copy_from(self, from: impl Into<MapTarget_Data>)
CopyFrom(crate::app::maptarget::MapTarget_Data) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IMapTarget_Data> IMapTarget_DataMethods for __T
Available on crate feature
app-maptarget only.