pub struct IdentityGraphEdge {
pub source: String,
pub target: String,
pub kinds: Vec<String>,
pub count: usize,
}Fields§
§source: String§target: String§kinds: Vec<String>§count: usizeTrait Implementations§
Source§impl Clone for IdentityGraphEdge
impl Clone for IdentityGraphEdge
Source§fn clone(&self) -> IdentityGraphEdge
fn clone(&self) -> IdentityGraphEdge
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 IdentityGraphEdge
impl Debug for IdentityGraphEdge
Source§impl<'de> Deserialize<'de> for IdentityGraphEdge
impl<'de> Deserialize<'de> for IdentityGraphEdge
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 IdentityGraphEdge
Source§impl PartialEq for IdentityGraphEdge
impl PartialEq for IdentityGraphEdge
Source§impl Serialize for IdentityGraphEdge
impl Serialize for IdentityGraphEdge
impl StructuralPartialEq for IdentityGraphEdge
Auto Trait Implementations§
impl Freeze for IdentityGraphEdge
impl RefUnwindSafe for IdentityGraphEdge
impl Send for IdentityGraphEdge
impl Sync for IdentityGraphEdge
impl Unpin for IdentityGraphEdge
impl UnsafeUnpin for IdentityGraphEdge
impl UnwindSafe for IdentityGraphEdge
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