#[repr(C)]pub struct NiTStringMap<V> {
pub __base: NiTStringTemplateMap<NiTMap<*const c_char, V>, V>,
}
Expand description
Represents a case-sensitive string map.
V
: Map value type
Fields§
§__base: NiTStringTemplateMap<NiTMap<*const c_char, V>, V>
Trait Implementations§
Source§impl<V: Clone> Clone for NiTStringMap<V>
impl<V: Clone> Clone for NiTStringMap<V>
Source§fn clone(&self) -> NiTStringMap<V>
fn clone(&self) -> NiTStringMap<V>
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<V: Debug> Debug for NiTStringMap<V>
impl<V: Debug> Debug for NiTStringMap<V>
Source§impl<V: Ord> Ord for NiTStringMap<V>
impl<V: Ord> Ord for NiTStringMap<V>
Source§fn cmp(&self, other: &NiTStringMap<V>) -> Ordering
fn cmp(&self, other: &NiTStringMap<V>) -> 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<V: PartialEq> PartialEq for NiTStringMap<V>
impl<V: PartialEq> PartialEq for NiTStringMap<V>
Source§impl<V: PartialOrd> PartialOrd for NiTStringMap<V>
impl<V: PartialOrd> PartialOrd for NiTStringMap<V>
impl<V: Eq> Eq for NiTStringMap<V>
impl<V> StructuralPartialEq for NiTStringMap<V>
Auto Trait Implementations§
impl<V> Freeze for NiTStringMap<V>
impl<V> RefUnwindSafe for NiTStringMap<V>where
V: RefUnwindSafe,
impl<V> !Send for NiTStringMap<V>
impl<V> !Sync for NiTStringMap<V>
impl<V> Unpin for NiTStringMap<V>where
V: Unpin,
impl<V> UnwindSafe for NiTStringMap<V>where
V: UnwindSafe + 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