pub trait IConcurrentDictionary_2_Node<T0: ClassIdentity, T1: ClassIdentity>: IObject {
// Provided methods
fn key(self) -> T0 { ... }
fn set_key(self, value: T0) { ... }
fn value(self) -> T1 { ... }
fn set_value(self, value: T1) { ... }
fn next(self) -> ConcurrentDictionary_2_Node<T0, T1> { ... }
fn set_next(self, value: ConcurrentDictionary_2_Node<T0, T1>) { ... }
fn hashcode(self) -> i32 { ... }
fn set_hashcode(self, value: i32) { ... }
}Provided Methods§
fn key(self) -> T0
fn set_key(self, value: T0)
fn value(self) -> T1
fn set_value(self, value: T1)
fn next(self) -> ConcurrentDictionary_2_Node<T0, T1>
fn set_next(self, value: ConcurrentDictionary_2_Node<T0, T1>)
fn hashcode(self) -> i32
fn set_hashcode(self, value: i32)
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.