pub struct GraphInspectionReport {
pub generated_at_unix_ms: u64,
pub total_records_scanned: u64,
pub nodes: Vec<GraphInspectionNode>,
pub edges: Vec<GraphInspectionEdge>,
pub truncated: bool,
}Fields§
§generated_at_unix_ms: u64§total_records_scanned: u64§nodes: Vec<GraphInspectionNode>§edges: Vec<GraphInspectionEdge>§truncated: boolTrait Implementations§
Source§impl Clone for GraphInspectionReport
impl Clone for GraphInspectionReport
Source§fn clone(&self) -> GraphInspectionReport
fn clone(&self) -> GraphInspectionReport
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 GraphInspectionReport
impl Debug for GraphInspectionReport
Source§impl<'de> Deserialize<'de> for GraphInspectionReport
impl<'de> Deserialize<'de> for GraphInspectionReport
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
impl Eq for GraphInspectionReport
Source§impl PartialEq for GraphInspectionReport
impl PartialEq for GraphInspectionReport
Source§fn eq(&self, other: &GraphInspectionReport) -> bool
fn eq(&self, other: &GraphInspectionReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphInspectionReport
impl Serialize for GraphInspectionReport
impl StructuralPartialEq for GraphInspectionReport
Auto Trait Implementations§
impl Freeze for GraphInspectionReport
impl RefUnwindSafe for GraphInspectionReport
impl Send for GraphInspectionReport
impl Sync for GraphInspectionReport
impl Unpin for GraphInspectionReport
impl UnsafeUnpin for GraphInspectionReport
impl UnwindSafe for GraphInspectionReport
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