pub trait ICharacterTurn: IMonoBehaviour {
// Provided methods
fn cp(self) -> Character { ... }
fn set_cp(self, value: Character) { ... }
fn m_start_dir(self) -> FXZ { ... }
fn set_m_start_dir(self, value: FXZ) { ... }
fn m_target_dir(self) -> FXZ { ... }
fn set_m_target_dir(self, value: FXZ) { ... }
fn m_ratio(self) -> f32 { ... }
fn set_m_ratio(self, value: f32) { ... }
}Provided Methods§
fn cp(self) -> Character
fn set_cp(self, value: Character)
fn m_start_dir(self) -> FXZ
fn set_m_start_dir(self, value: FXZ)
fn m_target_dir(self) -> FXZ
fn set_m_target_dir(self, value: FXZ)
fn m_ratio(self) -> f32
fn set_m_ratio(self, value: f32)
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.