pub struct TraceReport {
pub source_ref: String,
pub node_rows: usize,
pub edge_rows: usize,
pub action_rows: usize,
pub operational_mutation_rows: usize,
pub node_logical_ids: Vec<String>,
pub action_ids: Vec<String>,
pub operational_mutation_ids: Vec<String>,
}Expand description
Report from tracing all rows associated with a given source_ref.
Fields§
§source_ref: String§node_rows: usize§edge_rows: usize§action_rows: usize§operational_mutation_rows: usize§node_logical_ids: Vec<String>§action_ids: Vec<String>§operational_mutation_ids: Vec<String>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 · 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
Source§impl PartialEq for TraceReport
impl PartialEq for TraceReport
Source§impl Serialize for TraceReport
impl Serialize for TraceReport
impl Eq for TraceReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.