pub trait ICharacterCollision: IMonoBehaviour {
// Provided methods
fn m_kinds(self) -> CharacterCollision_Kinds { ... }
fn set_m_kinds(self, value: CharacterCollision_Kinds) { ... }
fn m_color(self) -> Color { ... }
fn set_m_color(self, value: Color) { ... }
fn m_radius(self) -> f32 { ... }
fn set_m_radius(self, value: f32) { ... }
fn m_result(self) -> f32 { ... }
fn set_m_result(self, value: f32) { ... }
}Provided Methods§
fn m_kinds(self) -> CharacterCollision_Kinds
fn set_m_kinds(self, value: CharacterCollision_Kinds)
fn m_color(self) -> Color
fn set_m_color(self, value: Color)
fn m_radius(self) -> f32
fn set_m_radius(self, value: f32)
fn m_result(self) -> f32
fn set_m_result(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.