#[repr(C)]pub struct BSTCaseInsensitiveStringMap<V> {
pub __base: NiTStringMap<V>,
}
Expand description
Represents a case-insensitive string map.
Fields§
§__base: NiTStringMap<V>
Trait Implementations§
Source§impl<T> BSTCaseInsensitiveStringMapTrait<T> for BSTCaseInsensitiveStringMap<T>
impl<T> BSTCaseInsensitiveStringMapTrait<T> for BSTCaseInsensitiveStringMap<T>
Source§impl<V: Clone> Clone for BSTCaseInsensitiveStringMap<V>
impl<V: Clone> Clone for BSTCaseInsensitiveStringMap<V>
Source§fn clone(&self) -> BSTCaseInsensitiveStringMap<V>
fn clone(&self) -> BSTCaseInsensitiveStringMap<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 BSTCaseInsensitiveStringMap<V>
impl<V: Debug> Debug for BSTCaseInsensitiveStringMap<V>
Source§impl<V: Ord> Ord for BSTCaseInsensitiveStringMap<V>
impl<V: Ord> Ord for BSTCaseInsensitiveStringMap<V>
Source§fn cmp(&self, other: &BSTCaseInsensitiveStringMap<V>) -> Ordering
fn cmp(&self, other: &BSTCaseInsensitiveStringMap<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 BSTCaseInsensitiveStringMap<V>
impl<V: PartialEq> PartialEq for BSTCaseInsensitiveStringMap<V>
Source§fn eq(&self, other: &BSTCaseInsensitiveStringMap<V>) -> bool
fn eq(&self, other: &BSTCaseInsensitiveStringMap<V>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<V: PartialOrd> PartialOrd for BSTCaseInsensitiveStringMap<V>
impl<V: PartialOrd> PartialOrd for BSTCaseInsensitiveStringMap<V>
impl<V: Eq> Eq for BSTCaseInsensitiveStringMap<V>
impl<V> StructuralPartialEq for BSTCaseInsensitiveStringMap<V>
Auto Trait Implementations§
impl<V> Freeze for BSTCaseInsensitiveStringMap<V>
impl<V> RefUnwindSafe for BSTCaseInsensitiveStringMap<V>where
V: RefUnwindSafe,
impl<V> !Send for BSTCaseInsensitiveStringMap<V>
impl<V> !Sync for BSTCaseInsensitiveStringMap<V>
impl<V> Unpin for BSTCaseInsensitiveStringMap<V>where
V: Unpin,
impl<V> UnwindSafe for BSTCaseInsensitiveStringMap<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