Skip to main content

IHashtable

Trait IHashtable 

Source
pub trait IHashtable: IObject {
Show 22 methods // Provided methods fn buckets(self) -> Array<Hashtable_bucket> { ... } fn set_buckets(self, value: Array<Hashtable_bucket>) { ... } fn count(self) -> i32 { ... } fn set_count(self, value: i32) { ... } fn occupancy(self) -> i32 { ... } fn set_occupancy(self, value: i32) { ... } fn loadsize(self) -> i32 { ... } fn set_loadsize(self, value: i32) { ... } fn load_factor(self) -> f32 { ... } fn set_load_factor(self, value: f32) { ... } fn version(self) -> i32 { ... } fn set_version(self, value: i32) { ... } fn is_writer_in_progress(self) -> bool { ... } fn set_is_writer_in_progress(self, value: bool) { ... } fn keys(self) -> ICollection { ... } fn set_keys(self, value: ICollection) { ... } fn values(self) -> ICollection { ... } fn set_values(self, value: ICollection) { ... } fn keycomparer(self) -> IEqualityComparer { ... } fn set_keycomparer(self, value: IEqualityComparer) { ... } fn sync_root(self) -> IlInstance { ... } fn set_sync_root(self, value: IlInstance) { ... }
}

Provided Methods§

Source

fn buckets(self) -> Array<Hashtable_bucket>

Source

fn set_buckets(self, value: Array<Hashtable_bucket>)

Source

fn count(self) -> i32

Source

fn set_count(self, value: i32)

Source

fn occupancy(self) -> i32

Source

fn set_occupancy(self, value: i32)

Source

fn loadsize(self) -> i32

Source

fn set_loadsize(self, value: i32)

Source

fn load_factor(self) -> f32

Source

fn set_load_factor(self, value: f32)

Source

fn version(self) -> i32

Source

fn set_version(self, value: i32)

Source

fn is_writer_in_progress(self) -> bool

Source

fn set_is_writer_in_progress(self, value: bool)

Source

fn keys(self) -> ICollection

Source

fn set_keys(self, value: ICollection)

Source

fn values(self) -> ICollection

Source

fn set_values(self, value: ICollection)

Source

fn keycomparer(self) -> IEqualityComparer

Source

fn set_keycomparer(self, value: IEqualityComparer)

Source

fn sync_root(self) -> IlInstance

Source

fn set_sync_root(self, value: IlInstance)

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§