Skip to main content

IEventSequence_Coroutine

Trait IEventSequence_Coroutine 

Source
pub trait IEventSequence_Coroutine: IObject {
    // Provided methods
    fn m_func(self) -> DynValue { ... }
    fn set_m_func(self, value: DynValue) { ... }
    fn m_args(self) -> Array<DynValue> { ... }
    fn set_m_args(self, value: Array<DynValue>) { ... }
    fn m_first(self) -> bool { ... }
    fn set_m_first(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_func(self) -> DynValue

Source

fn set_m_func(self, value: DynValue)

Source

fn m_args(self) -> Array<DynValue>

Source

fn set_m_args(self, value: Array<DynValue>)

Source

fn m_first(self) -> bool

Source

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