pub trait IHubAnimalController: IMonoBehaviour {
// Provided methods
fn m_hub_unit(self) -> HubUnitController { ... }
fn set_m_hub_unit(self, value: HubUnitController) { ... }
fn m_delay(self) -> f32 { ... }
fn set_m_delay(self, value: f32) { ... }
fn m_is_sleep(self) -> bool { ... }
fn set_m_is_sleep(self, value: bool) { ... }
fn m_trigger(self) -> bool { ... }
fn set_m_trigger(self, value: bool) { ... }
fn m_range_action(self) -> HubRangeAction { ... }
fn set_m_range_action(self, value: HubRangeAction) { ... }
}Provided Methods§
fn m_hub_unit(self) -> HubUnitController
fn set_m_hub_unit(self, value: HubUnitController)
fn m_delay(self) -> f32
fn set_m_delay(self, value: f32)
fn m_is_sleep(self) -> bool
fn set_m_is_sleep(self, value: bool)
fn m_trigger(self) -> bool
fn set_m_trigger(self, value: bool)
fn m_range_action(self) -> HubRangeAction
fn set_m_range_action(self, value: HubRangeAction)
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.