pub struct TraceEvent {Show 16 fields
pub seq: u64,
pub kind: TraceEventKind,
pub prev_hash: String,
pub hash: String,
pub timestamp: DateTime<Utc>,
pub doc_hash: String,
pub cell: Option<String>,
pub tool_id: Option<String>,
pub tool_version: Option<String>,
pub inputs_hash: Option<String>,
pub outputs_hash: Option<String>,
pub policy_hash: Option<String>,
pub latency_ms: Option<u64>,
pub cached: Option<bool>,
pub details: Option<Value>,
pub message: Option<String>,
}Fields§
§seq: u64§kind: TraceEventKind§prev_hash: String§hash: String§timestamp: DateTime<Utc>§doc_hash: String§cell: Option<String>§tool_id: Option<String>§tool_version: Option<String>§inputs_hash: Option<String>§outputs_hash: Option<String>§policy_hash: Option<String>§latency_ms: Option<u64>§cached: Option<bool>§details: Option<Value>§message: Option<String>Trait Implementations§
Source§impl Clone for TraceEvent
impl Clone for TraceEvent
Source§fn clone(&self) -> TraceEvent
fn clone(&self) -> TraceEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 TraceEvent
impl Debug for TraceEvent
Source§impl<'de> Deserialize<'de> for TraceEvent
impl<'de> Deserialize<'de> for TraceEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TraceEvent
impl RefUnwindSafe for TraceEvent
impl Send for TraceEvent
impl Sync for TraceEvent
impl Unpin for TraceEvent
impl UnwindSafe for TraceEvent
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