Skip to main content

IDict_1Methods

Trait IDict_1Methods 

Source
pub trait IDict_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, leq: Dict_1_LessOrEqual<T0>)
       where Self: Sized { ... }
    fn insert(self, key: T0) -> Dict_1_Node<T0>
       where Self: Sized { ... }
    fn insert_before(self, node: Dict_1_Node<T0>, key: T0) -> Dict_1_Node<T0>
       where Self: Sized { ... }
    fn find(self, key: T0) -> Dict_1_Node<T0>
       where Self: Sized { ... }
    fn min(self) -> Dict_1_Node<T0>
       where Self: Sized { ... }
    fn remove(self, node: Dict_1_Node<T0>)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, leq: Dict_1_LessOrEqual<T0>)
where Self: Sized,

Source

fn insert(self, key: T0) -> Dict_1_Node<T0>
where Self: Sized,

Source

fn insert_before(self, node: Dict_1_Node<T0>, key: T0) -> Dict_1_Node<T0>
where Self: Sized,

Source

fn find(self, key: T0) -> Dict_1_Node<T0>
where Self: Sized,

Source

fn min(self) -> Dict_1_Node<T0>
where Self: Sized,

Source

fn remove(self, node: Dict_1_Node<T0>)
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§

Source§

impl<T0: ClassIdentity, __U: IDict_1<T0> + ClassIdentity> IDict_1Methods<T0> for __U