Skip to main content

IDict_1_Node

pub trait IDict_1_Node<T0: ClassIdentity>: IObject {
    // Provided methods
    fn key(self) -> T0 { ... }
    fn set_key(self, value: T0) { ... }
    fn prev(self) -> Dict_1_Node<T0> { ... }
    fn set_prev(self, value: Dict_1_Node<T0>) { ... }
    fn next(self) -> Dict_1_Node<T0> { ... }
    fn set_next(self, value: Dict_1_Node<T0>) { ... }
}

Provided Methods§

Source

fn key(self) -> T0

Source

fn set_key(self, value: T0)

Source

fn prev(self) -> Dict_1_Node<T0>

Source

fn set_prev(self, value: Dict_1_Node<T0>)

Source

fn next(self) -> Dict_1_Node<T0>

Source

fn set_next(self, value: Dict_1_Node<T0>)

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§