pub struct GraphInspectionEdge {
pub source_id: String,
pub target_id: String,
pub kind: GraphInspectionEdgeKind,
pub details: Vec<String>,
}Fields§
§source_id: String§target_id: String§kind: GraphInspectionEdgeKind§details: Vec<String>Trait Implementations§
Source§impl Clone for GraphInspectionEdge
impl Clone for GraphInspectionEdge
Source§fn clone(&self) -> GraphInspectionEdge
fn clone(&self) -> GraphInspectionEdge
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 GraphInspectionEdge
impl Debug for GraphInspectionEdge
Source§impl<'de> Deserialize<'de> for GraphInspectionEdge
impl<'de> Deserialize<'de> for GraphInspectionEdge
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 GraphInspectionEdge
Source§impl PartialEq for GraphInspectionEdge
impl PartialEq for GraphInspectionEdge
Source§fn eq(&self, other: &GraphInspectionEdge) -> bool
fn eq(&self, other: &GraphInspectionEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphInspectionEdge
impl Serialize for GraphInspectionEdge
impl StructuralPartialEq for GraphInspectionEdge
Auto Trait Implementations§
impl Freeze for GraphInspectionEdge
impl RefUnwindSafe for GraphInspectionEdge
impl Send for GraphInspectionEdge
impl Sync for GraphInspectionEdge
impl Unpin for GraphInspectionEdge
impl UnsafeUnpin for GraphInspectionEdge
impl UnwindSafe for GraphInspectionEdge
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