Skip to main content

IMapTarget_DataMethods

Trait IMapTarget_DataMethods 

Source
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§

Source

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

Source

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

Source

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

Source

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

Source

fn get_index(self) -> i32

get_Index() overload

Source

fn set_index(self, value: impl Into<i32>)

set_Index(i32) overload

Source

fn get_unit(self) -> Unit

get_Unit() overload

Source

fn get_x(self) -> i32

get_X() overload

Source

fn get_z(self) -> i32

get_Z() overload

Source

fn get_x1(self) -> i32

get_X1() overload

Source

fn get_z1(self) -> i32

get_Z1() overload

Source

fn get_x2(self) -> i32

get_X2() overload

Source

fn get_z2(self) -> i32

get_Z2() overload

Source

fn get_item_mask(self) -> u32

get_ItemMask() overload

Source

fn get_select_item_index(self) -> i32

get_SelectItemIndex() overload

Source

fn set_select_item_index(self, value: impl Into<i32>)

set_SelectItemIndex(i32) overload

Source

fn check_item_mask(self, index: impl Into<i32>) -> bool

CheckItemMask(i32) overload

Source

fn is_out_side(self, x: impl Into<i32>, z: impl Into<i32>) -> bool

IsOutSide(i32, i32) overload

Source

fn copy_from(self, from: impl Into<MapTarget_Data>)

CopyFrom(crate::app::maptarget::MapTarget_Data) overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IMapTarget_Data> IMapTarget_DataMethods for __T

Available on crate feature app-maptarget only.