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§
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,
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.