Skip to main content

IHashtable_HashtableEnumerator

Trait IHashtable_HashtableEnumerator 

Source
pub trait IHashtable_HashtableEnumerator: IObject {
Show 14 methods // Provided methods fn hashtable(self) -> Hashtable { ... } fn set_hashtable(self, value: Hashtable) { ... } fn bucket(self) -> i32 { ... } fn set_bucket(self, value: i32) { ... } fn version(self) -> i32 { ... } fn set_version(self, value: i32) { ... } fn current(self) -> bool { ... } fn set_current(self, value: bool) { ... } fn get_object_ret_type(self) -> i32 { ... } fn set_get_object_ret_type(self, value: i32) { ... } fn current_key(self) -> IlInstance { ... } fn set_current_key(self, value: IlInstance) { ... } fn current_value(self) -> IlInstance { ... } fn set_current_value(self, value: IlInstance) { ... }
}

Provided Methods§

Source

fn hashtable(self) -> Hashtable

Source

fn set_hashtable(self, value: Hashtable)

Source

fn bucket(self) -> i32

Source

fn set_bucket(self, value: i32)

Source

fn version(self) -> i32

Source

fn set_version(self, value: i32)

Source

fn current(self) -> bool

Source

fn set_current(self, value: bool)

Source

fn get_object_ret_type(self) -> i32

Source

fn set_get_object_ret_type(self, value: i32)

Source

fn current_key(self) -> IlInstance

Source

fn set_current_key(self, value: IlInstance)

Source

fn current_value(self) -> IlInstance

Source

fn set_current_value(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§