pub trait IConcurrentDictionary_2<T0: ClassIdentity, T1: ClassIdentity>: IObject {
// Provided methods
fn tables(self) -> ConcurrentDictionary_2_Tables<T0, T1> { ... }
fn set_tables(self, value: ConcurrentDictionary_2_Tables<T0, T1>) { ... }
fn comparer(self) -> IEqualityComparer_1_Interface<T0> { ... }
fn set_comparer(self, value: IEqualityComparer_1_Interface<T0>) { ... }
fn grow_lock_array(self) -> bool { ... }
fn set_grow_lock_array(self, value: bool) { ... }
fn budget(self) -> i32 { ... }
fn set_budget(self, value: i32) { ... }
}Provided Methods§
fn tables(self) -> ConcurrentDictionary_2_Tables<T0, T1>
fn set_tables(self, value: ConcurrentDictionary_2_Tables<T0, T1>)
fn comparer(self) -> IEqualityComparer_1_Interface<T0>
fn set_comparer(self, value: IEqualityComparer_1_Interface<T0>)
fn grow_lock_array(self) -> bool
fn set_grow_lock_array(self, value: bool)
fn budget(self) -> i32
fn set_budget(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.