pub struct TransformTrace {
pub schema_version: u8,
pub value_mode: TraceValueModeName,
pub contains_raw_values: bool,
pub complete: bool,
pub truncation: Option<TraceTruncation>,
pub records: Vec<RecordTrace>,
pub finalize: Option<Vec<TraceEvent>>,
}Fields§
§schema_version: u8§value_mode: TraceValueModeName§contains_raw_values: bool§complete: bool§truncation: Option<TraceTruncation>§records: Vec<RecordTrace>§finalize: Option<Vec<TraceEvent>>Trait Implementations§
Source§impl Clone for TransformTrace
impl Clone for TransformTrace
Source§fn clone(&self) -> TransformTrace
fn clone(&self) -> TransformTrace
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 TransformTrace
impl Debug for TransformTrace
Source§impl PartialEq for TransformTrace
impl PartialEq for TransformTrace
Source§fn eq(&self, other: &TransformTrace) -> bool
fn eq(&self, other: &TransformTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TransformTrace
impl Serialize for TransformTrace
impl StructuralPartialEq for TransformTrace
Auto Trait Implementations§
impl Freeze for TransformTrace
impl RefUnwindSafe for TransformTrace
impl Send for TransformTrace
impl Sync for TransformTrace
impl Unpin for TransformTrace
impl UnsafeUnpin for TransformTrace
impl UnwindSafe for TransformTrace
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