Skip to main content

ICustomYieldInstructionMethods

Trait ICustomYieldInstructionMethods 

Source
pub trait ICustomYieldInstructionMethods: ICustomYieldInstruction {
    // Provided methods
    fn get_keep_waiting(self) -> bool { ... }
    fn get_current(self) -> Object { ... }
    fn move_next(self) -> bool { ... }
    fn reset(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_keep_waiting(self) -> bool

get_keepWaiting() overload

Source

fn get_current(self) -> Object

get_Current() overload

Source

fn move_next(self) -> bool

MoveNext() overload

Source

fn reset(self)

Reset() overload

Source

fn ctor(self)

.ctor() overload

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§

Source§

impl<__T: ICustomYieldInstruction> ICustomYieldInstructionMethods for __T

Available on crate feature unity_engine-customyieldinstruction only.