Skip to main content

IEnumerableWrapper

Trait IEnumerableWrapper 

Source
pub trait IEnumerableWrapper: IObject {
    // Provided methods
    fn m_enumerator(self) -> IEnumerator { ... }
    fn set_m_enumerator(self, value: IEnumerator) { ... }
    fn m_script(self) -> Script { ... }
    fn set_m_script(self, value: Script) { ... }
    fn m_prev(self) -> DynValue { ... }
    fn set_m_prev(self, value: DynValue) { ... }
    fn m_has_turn_once(self) -> bool { ... }
    fn set_m_has_turn_once(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_enumerator(self) -> IEnumerator

Source

fn set_m_enumerator(self, value: IEnumerator)

Source

fn m_script(self) -> Script

Source

fn set_m_script(self, value: Script)

Source

fn m_prev(self) -> DynValue

Source

fn set_m_prev(self, value: DynValue)

Source

fn m_has_turn_once(self) -> bool

Source

fn set_m_has_turn_once(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§