Skip to main content

IList_1_EnumeratorMethods

Trait IList_1_EnumeratorMethods 

Source
pub trait IList_1_EnumeratorMethods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, list: List_1<T0>)
       where Self: Sized { ... }
    fn dispose(self)
       where Self: Sized { ... }
    fn move_next(self) -> bool
       where Self: Sized { ... }
    fn move_next_rare(self) -> bool
       where Self: Sized { ... }
    fn get_current(self) -> T0
       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, list: List_1<T0>)
where Self: Sized,

Source

fn dispose(self)
where Self: Sized,

Source

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

Source

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

Source

fn get_current(self) -> T0
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§