pub trait IStack_1Methods<T0: ClassIdentity>: ClassIdentity {
Show 14 methods
// Provided methods
fn ctor(self)
where Self: Sized { ... }
fn ctor_2(self, capacity: i32)
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 contains(self, item: T0) -> bool
where Self: Sized { ... }
fn system_collections_i_collection_copy_to(
self,
array: IlInstance,
array_index: i32,
)
where Self: Sized { ... }
fn get_enumerator(self) -> Stack_1_Enumerator<T0>
where Self: Sized { ... }
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
where Self: Sized { ... }
fn peek(self) -> T0
where Self: Sized { ... }
fn pop(self) -> T0
where Self: Sized { ... }
fn push(self, item: T0)
where Self: Sized { ... }
fn throw_for_empty_stack(self)
where Self: Sized { ... }
}Provided Methods§
fn ctor(self)where
Self: Sized,
fn ctor_2(self, capacity: i32)where
Self: Sized,
fn get_count(self) -> i32where
Self: Sized,
fn system_collections_i_collection_get_is_synchronized(self) -> boolwhere
Self: Sized,
fn system_collections_i_collection_get_sync_root(self) -> Objectwhere
Self: Sized,
fn clear(self)where
Self: Sized,
fn contains(self, item: T0) -> boolwhere
Self: Sized,
fn system_collections_i_collection_copy_to(
self,
array: IlInstance,
array_index: i32,
)where
Self: Sized,
fn get_enumerator(self) -> Stack_1_Enumerator<T0>where
Self: Sized,
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumeratorwhere
Self: Sized,
fn peek(self) -> T0where
Self: Sized,
fn pop(self) -> T0where
Self: Sized,
fn push(self, item: T0)where
Self: Sized,
fn throw_for_empty_stack(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.