pub struct Node {
pub address: u64,
pub size: u64,
pub timestamp: MonotonicInstant,
pub thread_info_key: ResourceKey,
pub stack_trace_key: ResourceKey,
/* private fields */
}Fields§
§address: u64§size: u64§timestamp: MonotonicInstant§thread_info_key: ResourceKey§stack_trace_key: ResourceKeyTrait Implementations§
Source§impl FromBytes for Nodewhere
AtomicNodeIndex: FromBytes,
u64: FromBytes,
MonotonicInstant: FromBytes,
ResourceKey: FromBytes,
impl FromBytes for Nodewhere
AtomicNodeIndex: FromBytes,
u64: FromBytes,
MonotonicInstant: FromBytes,
ResourceKey: FromBytes,
Source§impl FromZeros for Nodewhere
AtomicNodeIndex: FromZeros,
u64: FromZeros,
MonotonicInstant: FromZeros,
ResourceKey: FromZeros,
impl FromZeros for Nodewhere
AtomicNodeIndex: FromZeros,
u64: FromZeros,
MonotonicInstant: FromZeros,
ResourceKey: FromZeros,
Source§fn new_zeroed() -> Selfwhere
Self: Sized,
fn new_zeroed() -> Selfwhere
Self: Sized,
Creates an instance of
Self from zeroed bytes. Read moreSource§fn new_box_zeroed() -> Result<Box<Self>, AllocError>where
Self: Sized,
fn new_box_zeroed() -> Result<Box<Self>, AllocError>where
Self: Sized,
Creates a
Box<Self> from zeroed bytes. Read moreSource§fn new_vec_zeroed(len: usize) -> Result<Vec<Self>, AllocError>where
Self: Sized,
fn new_vec_zeroed(len: usize) -> Result<Vec<Self>, AllocError>where
Self: Sized,
Creates a
Vec<Self> from zeroed bytes. Read moreSource§fn extend_vec_zeroed(
v: &mut Vec<Self>,
additional: usize,
) -> Result<(), AllocError>where
Self: Sized,
fn extend_vec_zeroed(
v: &mut Vec<Self>,
additional: usize,
) -> Result<(), AllocError>where
Self: Sized,
Extends a
Vec<Self> by pushing additional new items onto the end of
the vector. The new items are initialized with zeros.Source§impl TryFromBytes for Nodewhere
AtomicNodeIndex: TryFromBytes,
u64: TryFromBytes,
MonotonicInstant: TryFromBytes,
ResourceKey: TryFromBytes,
impl TryFromBytes for Nodewhere
AtomicNodeIndex: TryFromBytes,
u64: TryFromBytes,
MonotonicInstant: TryFromBytes,
ResourceKey: TryFromBytes,
Source§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Auto Trait Implementations§
impl !Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
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