pub trait ISortedList_SyncSortedListMethods: ISortedList_SyncSortedList {
Show 24 methods
// Provided methods
fn ctor(self, list: impl Into<SortedList>) { ... }
fn get_count(self) -> i32 { ... }
fn get_sync_root(self) -> Object { ... }
fn get_is_read_only(self) -> bool { ... }
fn get_is_fixed_size(self) -> bool { ... }
fn get_is_synchronized(self) -> bool { ... }
fn get_item(self, key: impl Into<Object>) -> Object { ... }
fn set_item(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn add(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn get_capacity(self) -> i32 { ... }
fn clone(self) -> Object { ... }
fn contains(self, key: impl Into<Object>) -> bool { ... }
fn contains_key(self, key: impl Into<Object>) -> bool { ... }
fn contains_value(self, key: impl Into<Object>) -> bool { ... }
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>) { ... }
fn get_by_index(self, index: impl Into<i32>) -> Object { ... }
fn get_enumerator(self) -> IDictionaryEnumerator { ... }
fn get_key(self, index: impl Into<i32>) -> Object { ... }
fn get_key_list(self) -> IList { ... }
fn get_value_list(self) -> IList { ... }
fn index_of_key(self, key: impl Into<Object>) -> i32 { ... }
fn index_of_value(self, value: impl Into<Object>) -> i32 { ... }
fn remove_at(self, index: impl Into<i32>) { ... }
fn remove(self, key: impl Into<Object>) { ... }
}Provided Methods§
Sourcefn ctor(self, list: impl Into<SortedList>)
fn ctor(self, list: impl Into<SortedList>)
.ctor(crate::system::collections::sortedlist::SortedList) overload
Sourcefn get_sync_root(self) -> Object
fn get_sync_root(self) -> Object
get_SyncRoot() overload
Sourcefn get_is_read_only(self) -> bool
fn get_is_read_only(self) -> bool
get_IsReadOnly() overload
Sourcefn get_is_fixed_size(self) -> bool
fn get_is_fixed_size(self) -> bool
get_IsFixedSize() overload
Sourcefn get_is_synchronized(self) -> bool
fn get_is_synchronized(self) -> bool
get_IsSynchronized() overload
Sourcefn get_item(self, key: impl Into<Object>) -> Object
fn get_item(self, key: impl Into<Object>) -> Object
get_Item(crate::system::object::Object) overload
Sourcefn set_item(self, key: impl Into<Object>, value: impl Into<Object>)
fn set_item(self, key: impl Into<Object>, value: impl Into<Object>)
set_Item(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn add(self, key: impl Into<Object>, value: impl Into<Object>)
fn add(self, key: impl Into<Object>, value: impl Into<Object>)
Add(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn get_capacity(self) -> i32
fn get_capacity(self) -> i32
get_Capacity() overload
Sourcefn contains(self, key: impl Into<Object>) -> bool
fn contains(self, key: impl Into<Object>) -> bool
Contains(crate::system::object::Object) overload
Sourcefn contains_key(self, key: impl Into<Object>) -> bool
fn contains_key(self, key: impl Into<Object>) -> bool
ContainsKey(crate::system::object::Object) overload
Sourcefn contains_value(self, key: impl Into<Object>) -> bool
fn contains_value(self, key: impl Into<Object>) -> bool
ContainsValue(crate::system::object::Object) overload
Sourcefn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
CopyTo(::unity::IlInstance, i32) overload
Sourcefn get_by_index(self, index: impl Into<i32>) -> Object
fn get_by_index(self, index: impl Into<i32>) -> Object
GetByIndex(i32) overload
Sourcefn get_enumerator(self) -> IDictionaryEnumerator
fn get_enumerator(self) -> IDictionaryEnumerator
GetEnumerator() overload
Sourcefn get_key_list(self) -> IList
fn get_key_list(self) -> IList
GetKeyList() overload
Sourcefn get_value_list(self) -> IList
fn get_value_list(self) -> IList
GetValueList() overload
Sourcefn index_of_key(self, key: impl Into<Object>) -> i32
fn index_of_key(self, key: impl Into<Object>) -> i32
IndexOfKey(crate::system::object::Object) overload
Sourcefn index_of_value(self, value: impl Into<Object>) -> i32
fn index_of_value(self, value: impl Into<Object>) -> i32
IndexOfValue(crate::system::object::Object) overload
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§
impl<__T: ISortedList_SyncSortedList> ISortedList_SyncSortedListMethods for __T
system-collections-sortedlist only.