#[repr(C)]pub enum NiMemEventType {
Show 13 variants
Unknown = 0,
OperNew = 1,
OperNewArray = 2,
OperDelete = 3,
OperDeleteArray = 4,
Malloc = 5,
Realloc = 6,
AlignedMalloc = 7,
AlignedRealloc = 8,
Free = 9,
AlignedFree = 10,
ExternalAlloc = 11,
ExternalFree = 12,
}
Variants§
Unknown = 0
OperNew = 1
OperNewArray = 2
OperDelete = 3
OperDeleteArray = 4
Malloc = 5
Realloc = 6
AlignedMalloc = 7
AlignedRealloc = 8
Free = 9
AlignedFree = 10
ExternalAlloc = 11
ExternalFree = 12
Trait Implementations§
Source§impl Clone for NiMemEventType
impl Clone for NiMemEventType
Source§fn clone(&self) -> NiMemEventType
fn clone(&self) -> NiMemEventType
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 Debug for NiMemEventType
impl Debug for NiMemEventType
Source§impl Default for NiMemEventType
impl Default for NiMemEventType
Source§fn default() -> NiMemEventType
fn default() -> NiMemEventType
Returns the “default value” for a type. Read more
Source§impl From<NiMemEventType> for NiMemEventType_CEnum
impl From<NiMemEventType> for NiMemEventType_CEnum
Source§fn from(value: NiMemEventType) -> Self
fn from(value: NiMemEventType) -> Self
Converts to this type from the input type.
Source§impl Hash for NiMemEventType
impl Hash for NiMemEventType
Source§impl Ord for NiMemEventType
impl Ord for NiMemEventType
Source§fn cmp(&self, other: &NiMemEventType) -> Ordering
fn cmp(&self, other: &NiMemEventType) -> 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 PartialEq for NiMemEventType
impl PartialEq for NiMemEventType
Source§impl PartialOrd for NiMemEventType
impl PartialOrd for NiMemEventType
Source§impl TryFrom<NiMemEventType_CEnum> for NiMemEventType
impl TryFrom<NiMemEventType_CEnum> for NiMemEventType
impl Copy for NiMemEventType
impl Eq for NiMemEventType
impl StructuralPartialEq for NiMemEventType
Auto Trait Implementations§
impl Freeze for NiMemEventType
impl RefUnwindSafe for NiMemEventType
impl Send for NiMemEventType
impl Sync for NiMemEventType
impl Unpin for NiMemEventType
impl UnwindSafe for NiMemEventType
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