Skip to main content

ILinkedListNode_1Methods

Trait ILinkedListNode_1Methods 

Source
pub trait ILinkedListNode_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, value: T0)
       where Self: Sized { ... }
    fn ctor_2(self, list: LinkedList_1<T0>, value: T0)
       where Self: Sized { ... }
    fn get_list(self) -> LinkedList_1<T0>
       where Self: Sized { ... }
    fn get_next(self) -> LinkedListNode_1<T0>
       where Self: Sized { ... }
    fn get_previous(self) -> LinkedListNode_1<T0>
       where Self: Sized { ... }
    fn get_value(self) -> T0
       where Self: Sized { ... }
    fn set_value(self, value: T0)
       where Self: Sized { ... }
    fn invalidate(self)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, value: T0)
where Self: Sized,

Source

fn ctor_2(self, list: LinkedList_1<T0>, value: T0)
where Self: Sized,

Source

fn get_list(self) -> LinkedList_1<T0>
where Self: Sized,

Source

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

Source

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

Source

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

Source

fn set_value(self, value: T0)
where Self: Sized,

Source

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