Skip to main content

IHubMoveDataMethods

Trait IHubMoveDataMethods 

Source
pub trait IHubMoveDataMethods: IHubMoveData {
Show 21 methods // Provided methods fn get_move_type(self) -> Il2CppString { ... } fn set_move_type(self, value: impl Into<Il2CppString>) { ... } fn get_locator(self) -> Il2CppString { ... } fn set_locator(self, value: impl Into<Il2CppString>) { ... } fn get_body_name(self) -> Il2CppString { ... } fn set_body_name(self, value: impl Into<Il2CppString>) { ... } fn get_face_name(self) -> Il2CppString { ... } fn set_face_name(self, value: impl Into<Il2CppString>) { ... } fn get_is_turn(self) -> bool { ... } fn set_is_turn(self, value: impl Into<bool>) { ... } fn get_start_sec(self) -> f32 { ... } fn set_start_sec(self, value: impl Into<f32>) { ... } fn get_end_sec(self) -> f32 { ... } fn set_end_sec(self, value: impl Into<f32>) { ... } fn get_move_speed(self) -> f32 { ... } fn set_move_speed(self, value: impl Into<f32>) { ... } fn get_move_sec(self) -> Il2CppString { ... } fn set_move_sec(self, value: impl Into<Il2CppString>) { ... } fn on_build(self) { ... } fn get_debug_name(self) -> Il2CppString { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_move_type(self) -> Il2CppString

get_MoveType() overload

Source

fn set_move_type(self, value: impl Into<Il2CppString>)

set_MoveType(::unity::Il2CppString) overload

Source

fn get_locator(self) -> Il2CppString

get_Locator() overload

Source

fn set_locator(self, value: impl Into<Il2CppString>)

set_Locator(::unity::Il2CppString) overload

Source

fn get_body_name(self) -> Il2CppString

get_BodyName() overload

Source

fn set_body_name(self, value: impl Into<Il2CppString>)

set_BodyName(::unity::Il2CppString) overload

Source

fn get_face_name(self) -> Il2CppString

get_FaceName() overload

Source

fn set_face_name(self, value: impl Into<Il2CppString>)

set_FaceName(::unity::Il2CppString) overload

Source

fn get_is_turn(self) -> bool

get_IsTurn() overload

Source

fn set_is_turn(self, value: impl Into<bool>)

set_IsTurn(bool) overload

Source

fn get_start_sec(self) -> f32

get_StartSec() overload

Source

fn set_start_sec(self, value: impl Into<f32>)

set_StartSec(f32) overload

Source

fn get_end_sec(self) -> f32

get_EndSec() overload

Source

fn set_end_sec(self, value: impl Into<f32>)

set_EndSec(f32) overload

Source

fn get_move_speed(self) -> f32

get_MoveSpeed() overload

Source

fn set_move_speed(self, value: impl Into<f32>)

set_MoveSpeed(f32) overload

Source

fn get_move_sec(self) -> Il2CppString

get_MoveSec() overload

Source

fn set_move_sec(self, value: impl Into<Il2CppString>)

set_MoveSec(::unity::Il2CppString) overload

Source

fn on_build(self)

OnBuild() overload

Source

fn get_debug_name(self) -> Il2CppString

GetDebugName() 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: IHubMoveData> IHubMoveDataMethods for __T

Available on crate feature app-hubmovedata only.