Skip to main content

IHubAnimalController

Trait IHubAnimalController 

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

Source

fn m_hub_unit(self) -> HubUnitController

Source

fn set_m_hub_unit(self, value: HubUnitController)

Source

fn m_delay(self) -> f32

Source

fn set_m_delay(self, value: f32)

Source

fn m_is_sleep(self) -> bool

Source

fn set_m_is_sleep(self, value: bool)

Source

fn m_trigger(self) -> bool

Source

fn set_m_trigger(self, value: bool)

Source

fn m_range_action(self) -> HubRangeAction

Source

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.

Implementors§