pub struct TraceReport {
pub source_ref: String,
pub events: Vec<TraceEvent>,
}Expand description
Phase 9 Pack B trace report (AC-042). One event per canonical row
attributable to the requested source_id, ordered by write_cursor
ascending.
Fields§
§source_ref: String§events: Vec<TraceEvent>Trait Implementations§
Source§impl Clone for TraceReport
impl Clone for TraceReport
Source§fn clone(&self) -> TraceReport
fn clone(&self) -> TraceReport
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 TraceReport
impl Debug for TraceReport
impl Eq for TraceReport
Source§impl PartialEq for TraceReport
impl PartialEq for TraceReport
Source§fn eq(&self, other: &TraceReport) -> bool
fn eq(&self, other: &TraceReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TraceReport
Auto Trait Implementations§
impl Freeze for TraceReport
impl RefUnwindSafe for TraceReport
impl Send for TraceReport
impl Sync for TraceReport
impl Unpin for TraceReport
impl UnsafeUnpin for TraceReport
impl UnwindSafe for TraceReport
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