pub struct GraphEdgeSummary {
pub source: BlockId,
pub target: BlockId,
pub relation: String,
pub direction: String,
}Fields§
§source: BlockId§target: BlockId§relation: String§direction: StringTrait Implementations§
Source§impl Clone for GraphEdgeSummary
impl Clone for GraphEdgeSummary
Source§fn clone(&self) -> GraphEdgeSummary
fn clone(&self) -> GraphEdgeSummary
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 GraphEdgeSummary
impl Debug for GraphEdgeSummary
Source§impl<'de> Deserialize<'de> for GraphEdgeSummary
impl<'de> Deserialize<'de> for GraphEdgeSummary
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
Auto Trait Implementations§
impl Freeze for GraphEdgeSummary
impl RefUnwindSafe for GraphEdgeSummary
impl Send for GraphEdgeSummary
impl Sync for GraphEdgeSummary
impl Unpin for GraphEdgeSummary
impl UnsafeUnpin for GraphEdgeSummary
impl UnwindSafe for GraphEdgeSummary
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