#[repr(C)]pub struct NiTStringTemplateMap<Parent, V> {
pub __base: Parent,
pub copy: bool,
pub pad21: u8,
pub pad22: u16,
pub pad24: u32,
/* private fields */
}
Expand description
Represents a string template map.
Simulates the NiTStringTemplateMap
C++ class.
V
: Map value type
Fields§
§__base: Parent
Base map.
copy: bool
Copy flag.
pad21: u8
§pad22: u16
§pad24: u32
Trait Implementations§
Source§impl<Parent: Clone, V: Clone> Clone for NiTStringTemplateMap<Parent, V>
impl<Parent: Clone, V: Clone> Clone for NiTStringTemplateMap<Parent, V>
Source§fn clone(&self) -> NiTStringTemplateMap<Parent, V>
fn clone(&self) -> NiTStringTemplateMap<Parent, 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<Parent: Ord, V: Ord> Ord for NiTStringTemplateMap<Parent, V>
impl<Parent: Ord, V: Ord> Ord for NiTStringTemplateMap<Parent, V>
Source§fn cmp(&self, other: &NiTStringTemplateMap<Parent, V>) -> Ordering
fn cmp(&self, other: &NiTStringTemplateMap<Parent, 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<Parent: PartialEq, V: PartialEq> PartialEq for NiTStringTemplateMap<Parent, V>
impl<Parent: PartialEq, V: PartialEq> PartialEq for NiTStringTemplateMap<Parent, V>
Source§fn eq(&self, other: &NiTStringTemplateMap<Parent, V>) -> bool
fn eq(&self, other: &NiTStringTemplateMap<Parent, V>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<Parent: PartialOrd, V: PartialOrd> PartialOrd for NiTStringTemplateMap<Parent, V>
impl<Parent: PartialOrd, V: PartialOrd> PartialOrd for NiTStringTemplateMap<Parent, V>
impl<Parent: Eq, V: Eq> Eq for NiTStringTemplateMap<Parent, V>
impl<Parent, V> StructuralPartialEq for NiTStringTemplateMap<Parent, V>
Auto Trait Implementations§
impl<Parent, V> Freeze for NiTStringTemplateMap<Parent, V>where
Parent: Freeze,
impl<Parent, V> RefUnwindSafe for NiTStringTemplateMap<Parent, V>where
Parent: RefUnwindSafe,
V: RefUnwindSafe,
impl<Parent, V> Send for NiTStringTemplateMap<Parent, V>
impl<Parent, V> Sync for NiTStringTemplateMap<Parent, V>
impl<Parent, V> Unpin for NiTStringTemplateMap<Parent, V>
impl<Parent, V> UnwindSafe for NiTStringTemplateMap<Parent, V>where
Parent: UnwindSafe,
V: UnwindSafe,
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