Skip to main content

IQueue_1Methods

Trait IQueue_1Methods 

Source
pub trait IQueue_1Methods<T0: ClassIdentity>: ClassIdentity {
Show 17 methods // Provided methods fn ctor(self) where Self: Sized { ... } fn ctor_2(self, capacity: i32) where Self: Sized { ... } fn ctor_3(self, collection: IEnumerable_1<T0>) where Self: Sized { ... } fn get_count(self) -> i32 where Self: Sized { ... } fn system_collections_i_collection_get_is_synchronized(self) -> bool where Self: Sized { ... } fn system_collections_i_collection_get_sync_root(self) -> Object where Self: Sized { ... } fn clear(self) where Self: Sized { ... } fn system_collections_i_collection_copy_to( self, array: IlInstance, index: i32, ) where Self: Sized { ... } fn enqueue(self, item: T0) where Self: Sized { ... } fn get_enumerator(self) -> Queue_1_Enumerator<T0> where Self: Sized { ... } fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator where Self: Sized { ... } fn dequeue(self) -> T0 where Self: Sized { ... } fn peek(self) -> T0 where Self: Sized { ... } fn contains(self, item: T0) -> bool where Self: Sized { ... } fn set_capacity(self, capacity: i32) where Self: Sized { ... } fn move_next(self) -> ((), i32) where Self: Sized { ... } fn throw_for_empty_queue(self) where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self)
where Self: Sized,

Source

fn ctor_2(self, capacity: i32)
where Self: Sized,

Source

fn ctor_3(self, collection: IEnumerable_1<T0>)
where Self: Sized,

Source

fn get_count(self) -> i32
where Self: Sized,

Source

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

Source

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

Source

fn clear(self)
where Self: Sized,

Source

fn system_collections_i_collection_copy_to(self, array: IlInstance, index: i32)
where Self: Sized,

Source

fn enqueue(self, item: T0)
where Self: Sized,

Source

fn get_enumerator(self) -> Queue_1_Enumerator<T0>
where Self: Sized,

Source

fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
where Self: Sized,

Source

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

Source

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

Source

fn contains(self, item: T0) -> bool
where Self: Sized,

Source

fn set_capacity(self, capacity: i32)
where Self: Sized,

Source

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

Source

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