#[repr(C)]pub struct SettingCollectionMap<T> {
    pub __base: SettingCollection<T>,
    pub settings: BSTCaseInsensitiveStringMap<*mut T>,
}Expand description
Represents a map-based collection of settings.
Inherits from SettingCollection<T>.
§Memory Layout:
- sub_key: Sub-key array (0x104)
- handle: Handle pointer (0x110)
- settings: Case-insensitive map of settings (0x118)
Fields§
§__base: SettingCollection<T>Base SettingCollection<T> struct.
settings: BSTCaseInsensitiveStringMap<*mut T>Map of case-insensitive strings to settings.
Trait Implementations§
Source§impl<T: Clone> Clone for SettingCollectionMap<T>
 
impl<T: Clone> Clone for SettingCollectionMap<T>
Source§fn clone(&self) -> SettingCollectionMap<T>
 
fn clone(&self) -> SettingCollectionMap<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<T: Debug> Debug for SettingCollectionMap<T>
 
impl<T: Debug> Debug for SettingCollectionMap<T>
Source§impl<T: Ord> Ord for SettingCollectionMap<T>
 
impl<T: Ord> Ord for SettingCollectionMap<T>
Source§fn cmp(&self, other: &SettingCollectionMap<T>) -> Ordering
 
fn cmp(&self, other: &SettingCollectionMap<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialEq> PartialEq for SettingCollectionMap<T>
 
impl<T: PartialEq> PartialEq for SettingCollectionMap<T>
Source§impl<T: PartialOrd> PartialOrd for SettingCollectionMap<T>
 
impl<T: PartialOrd> PartialOrd for SettingCollectionMap<T>
impl<T: Eq> Eq for SettingCollectionMap<T>
impl<T> StructuralPartialEq for SettingCollectionMap<T>
Auto Trait Implementations§
impl<T> Freeze for SettingCollectionMap<T>
impl<T> RefUnwindSafe for SettingCollectionMap<T>where
    T: RefUnwindSafe,
impl<T> !Send for SettingCollectionMap<T>
impl<T> !Sync for SettingCollectionMap<T>
impl<T> Unpin for SettingCollectionMap<T>
impl<T> UnwindSafe for SettingCollectionMap<T>where
    T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more