Skip to main content

IConcurrentDictionary_2_Node

Trait IConcurrentDictionary_2_Node 

Source
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§

Source

fn key(self) -> T0

Source

fn set_key(self, value: T0)

Source

fn value(self) -> T1

Source

fn set_value(self, value: T1)

Source

fn next(self) -> ConcurrentDictionary_2_Node<T0, T1>

Source

fn set_next(self, value: ConcurrentDictionary_2_Node<T0, T1>)

Source

fn hashcode(self) -> i32

Source

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.

Implementors§