Skip to main content

IBlinkMonoBehaviour

Trait IBlinkMonoBehaviour 

Source
pub trait IBlinkMonoBehaviour: IMonoBehaviour {
    // Provided methods
    fn m_counter(self) -> i32 { ... }
    fn set_m_counter(self, value: i32) { ... }
    fn m_enabled(self) -> bool { ... }
    fn set_m_enabled(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_counter(self) -> i32

Source

fn set_m_counter(self, value: i32)

Source

fn m_enabled(self) -> bool

Source

fn set_m_enabled(self, value: bool)

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§