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§
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) -> T0where
Self: Sized,
fn set_value(self, value: T0)where
Self: Sized,
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.