#[repr(C, packed(1))]pub struct TimestampHeapEntry {
pub timestamp: u64,
}Expand description
A timestamp entry in a counter heap.
C++ equivalent: MTL4::TimestampHeapEntry
Fields§
§timestamp: u64The timestamp value.
Trait Implementations§
Source§impl Clone for TimestampHeapEntry
impl Clone for TimestampHeapEntry
Source§fn clone(&self) -> TimestampHeapEntry
fn clone(&self) -> TimestampHeapEntry
Returns a duplicate 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 TimestampHeapEntry
impl Debug for TimestampHeapEntry
Source§impl Default for TimestampHeapEntry
impl Default for TimestampHeapEntry
Source§fn default() -> TimestampHeapEntry
fn default() -> TimestampHeapEntry
Returns the “default value” for a type. Read more
impl Copy for TimestampHeapEntry
Auto Trait Implementations§
impl Freeze for TimestampHeapEntry
impl RefUnwindSafe for TimestampHeapEntry
impl Send for TimestampHeapEntry
impl Sync for TimestampHeapEntry
impl Unpin for TimestampHeapEntry
impl UnwindSafe for TimestampHeapEntry
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