Skip to main content

IOrderedDictionary

Trait IOrderedDictionary 

Source
pub trait IOrderedDictionary: IObject {
    // Provided methods
    fn objects_array(self) -> ArrayList { ... }
    fn set_objects_array(self, value: ArrayList) { ... }
    fn objects_table(self) -> Hashtable { ... }
    fn set_objects_table(self, value: Hashtable) { ... }
    fn initial_capacity(self) -> i32 { ... }
    fn set_initial_capacity(self, value: i32) { ... }
    fn comparer(self) -> IEqualityComparer { ... }
    fn set_comparer(self, value: IEqualityComparer) { ... }
    fn read_only(self) -> bool { ... }
    fn set_read_only(self, value: bool) { ... }
    fn sync_root(self) -> IlInstance { ... }
    fn set_sync_root(self, value: IlInstance) { ... }
}

Provided Methods§

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§