Skip to main content

ILinkedList_1Methods

Trait ILinkedList_1Methods 

Source
pub trait ILinkedList_1Methods<T0: ClassIdentity>: ClassIdentity {
Show 28 methods // Provided methods fn ctor(self) where Self: Sized { ... } fn get_count(self) -> i32 where Self: Sized { ... } fn get_first(self) -> LinkedListNode_1<T0> where Self: Sized { ... } fn get_last(self) -> LinkedListNode_1<T0> where Self: Sized { ... } fn add_before( self, node: LinkedListNode_1<T0>, new_node: LinkedListNode_1<T0>, ) where Self: Sized { ... } fn add_first(self, value: T0) -> LinkedListNode_1<T0> where Self: Sized { ... } fn add_first_2(self, node: LinkedListNode_1<T0>) where Self: Sized { ... } fn add_last(self, value: T0) -> LinkedListNode_1<T0> where Self: Sized { ... } fn add_last_2(self, node: LinkedListNode_1<T0>) where Self: Sized { ... } fn clear(self) where Self: Sized { ... } fn contains(self, value: T0) -> bool where Self: Sized { ... } fn copy_to(self, array: Array<T0>, index: i32) where Self: Sized { ... } fn find(self, value: T0) -> LinkedListNode_1<T0> where Self: Sized { ... } fn get_enumerator(self) -> LinkedList_1_Enumerator<T0> where Self: Sized { ... } fn remove(self, value: T0) -> bool where Self: Sized { ... } fn remove_2(self, node: LinkedListNode_1<T0>) where Self: Sized { ... } fn remove_first(self) where Self: Sized { ... } fn remove_last(self) where Self: Sized { ... } fn on_deserialization(self, sender: Object) where Self: Sized { ... } fn internal_insert_node_before( self, node: LinkedListNode_1<T0>, new_node: LinkedListNode_1<T0>, ) where Self: Sized { ... } fn internal_insert_node_to_empty_list(self, new_node: LinkedListNode_1<T0>) where Self: Sized { ... } fn internal_remove_node(self, node: LinkedListNode_1<T0>) where Self: Sized { ... } fn validate_new_node(self, node: LinkedListNode_1<T0>) where Self: Sized { ... } fn validate_node(self, node: LinkedListNode_1<T0>) 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 system_collections_i_collection_copy_to( self, array: IlInstance, index: i32, ) where Self: Sized { ... } fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self)
where Self: Sized,

Source

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

Source

fn get_first(self) -> LinkedListNode_1<T0>
where Self: Sized,

Source

fn get_last(self) -> LinkedListNode_1<T0>
where Self: Sized,

Source

fn add_before(self, node: LinkedListNode_1<T0>, new_node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn add_first(self, value: T0) -> LinkedListNode_1<T0>
where Self: Sized,

Source

fn add_first_2(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn add_last(self, value: T0) -> LinkedListNode_1<T0>
where Self: Sized,

Source

fn add_last_2(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn clear(self)
where Self: Sized,

Source

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

Source

fn copy_to(self, array: Array<T0>, index: i32)
where Self: Sized,

Source

fn find(self, value: T0) -> LinkedListNode_1<T0>
where Self: Sized,

Source

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

Source

fn remove(self, value: T0) -> bool
where Self: Sized,

Source

fn remove_2(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn remove_first(self)
where Self: Sized,

Source

fn remove_last(self)
where Self: Sized,

Source

fn on_deserialization(self, sender: Object)
where Self: Sized,

Source

fn internal_insert_node_before( self, node: LinkedListNode_1<T0>, new_node: LinkedListNode_1<T0>, )
where Self: Sized,

Source

fn internal_insert_node_to_empty_list(self, new_node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn internal_remove_node(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn validate_new_node(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn validate_node(self, node: LinkedListNode_1<T0>)
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 system_collections_i_collection_copy_to(self, array: IlInstance, index: i32)
where Self: Sized,

Source

fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
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§