Skip to main content

IQueue_1_EnumeratorMethods

Trait IQueue_1_EnumeratorMethods 

Source
pub trait IQueue_1_EnumeratorMethods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, q: Queue_1<T0>)
       where Self: Sized { ... }
    fn dispose(self)
       where Self: Sized { ... }
    fn move_next(self) -> bool
       where Self: Sized { ... }
    fn get_current(self) -> T0
       where Self: Sized { ... }
    fn throw_enumeration_not_started_or_ended(self)
       where Self: Sized { ... }
    fn system_collections_i_enumerator_get_current(self) -> Object
       where Self: Sized { ... }
    fn system_collections_i_enumerator_reset(self)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, q: Queue_1<T0>)
where Self: Sized,

Source

fn dispose(self)
where Self: Sized,

Source

fn move_next(self) -> bool
where Self: Sized,

Source

fn get_current(self) -> T0
where Self: Sized,

Source

fn throw_enumeration_not_started_or_ended(self)
where Self: Sized,

Source

fn system_collections_i_enumerator_get_current(self) -> Object
where Self: Sized,

Source

fn system_collections_i_enumerator_reset(self)
where Self: Sized,

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§