pub struct ExactTraceEvent {
pub sequence: u64,
pub pid: u32,
pub parent_pid: Option<u32>,
pub parent_start_key: Option<u64>,
pub start_key: Option<u64>,
pub timestamp: SystemTime,
pub kind: ExactTraceEventKind,
pub executable: Option<PathBuf>,
pub argv: Option<Vec<OsString>>,
pub origin: Option<TraceOriginArtifact>,
}Expand description
Native launched-tree event produced by an exact trace backend.
Fields§
§sequence: u64§pid: u32§parent_pid: Option<u32>§parent_start_key: Option<u64>§start_key: Option<u64>§timestamp: SystemTime§kind: ExactTraceEventKind§executable: Option<PathBuf>§argv: Option<Vec<OsString>>§origin: Option<TraceOriginArtifact>Trait Implementations§
Source§impl Clone for ExactTraceEvent
impl Clone for ExactTraceEvent
Source§fn clone(&self) -> ExactTraceEvent
fn clone(&self) -> ExactTraceEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExactTraceEvent
impl Debug for ExactTraceEvent
impl Eq for ExactTraceEvent
Source§impl PartialEq for ExactTraceEvent
impl PartialEq for ExactTraceEvent
impl StructuralPartialEq for ExactTraceEvent
Auto Trait Implementations§
impl Freeze for ExactTraceEvent
impl RefUnwindSafe for ExactTraceEvent
impl Send for ExactTraceEvent
impl Sync for ExactTraceEvent
impl Unpin for ExactTraceEvent
impl UnsafeUnpin for ExactTraceEvent
impl UnwindSafe for ExactTraceEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more