pub struct SymbolGraphEdge {
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 SymbolGraphEdge
impl Clone for SymbolGraphEdge
Source§fn clone(&self) -> SymbolGraphEdge
fn clone(&self) -> SymbolGraphEdge
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 SymbolGraphEdge
impl Debug for SymbolGraphEdge
Source§impl<'de> Deserialize<'de> for SymbolGraphEdge
impl<'de> Deserialize<'de> for SymbolGraphEdge
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 SymbolGraphEdge
Source§impl PartialEq for SymbolGraphEdge
impl PartialEq for SymbolGraphEdge
Source§impl Serialize for SymbolGraphEdge
impl Serialize for SymbolGraphEdge
impl StructuralPartialEq for SymbolGraphEdge
Auto Trait Implementations§
impl Freeze for SymbolGraphEdge
impl RefUnwindSafe for SymbolGraphEdge
impl Send for SymbolGraphEdge
impl Sync for SymbolGraphEdge
impl Unpin for SymbolGraphEdge
impl UnsafeUnpin for SymbolGraphEdge
impl UnwindSafe for SymbolGraphEdge
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