Struct wasmtime_jit_debug::perf_jitdump::RecordHeader
source · [−]Expand description
Each record starts with this fixed size record header which describes the record that follows
Fields
id: u32
uint32_t id: a value identifying the record type (see below)
record_size: u32
uint32_t total_size: the size in bytes of the record including the header.
timestamp: u64
uint64_t timestamp: a timestamp of when the record was created.
Trait Implementations
sourceimpl Clone for RecordHeader
impl Clone for RecordHeader
sourcefn clone(&self) -> RecordHeader
fn clone(&self) -> RecordHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RecordHeader
impl Debug for RecordHeader
sourceimpl Default for RecordHeader
impl Default for RecordHeader
sourcefn default() -> RecordHeader
fn default() -> RecordHeader
Returns the “default value” for a type. Read more
impl Copy for RecordHeader
impl Pod for RecordHeader
Auto Trait Implementations
impl RefUnwindSafe for RecordHeader
impl Send for RecordHeader
impl Sync for RecordHeader
impl Unpin for RecordHeader
impl UnwindSafe for RecordHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more