pub struct Edge {
pub src: NodeId,
pub dst: NodeId,
pub relation: Relation,
pub evidence: Evidence,
pub confidence: Confidence,
pub site: Option<Span>,
}Expand description
Directed edge src -> dst. The graph is a multigraph: parallel edges
that differ in relation, evidence, or confidence coexist.
Fields§
§src: NodeId§dst: NodeId§relation: Relation§evidence: Evidence§confidence: Confidence§site: Option<Span>Byte span of the binding reference in the src node’s file (the file
is derivable from src). None when no single site exists:
containment, dynamic fan-out, implements/extends pairing, declared
links. When several sites bind the same (src, dst, relation,
evidence), storage keeps ONE representative site — the field is
last so identity orders before site.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Edge
impl<'de> Deserialize<'de> for Edge
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 Edge
Source§impl Ord for Edge
impl Ord for Edge
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Edge
impl PartialOrd for Edge
impl StructuralPartialEq for Edge
Auto Trait Implementations§
impl Freeze for Edge
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnsafeUnpin for Edge
impl UnwindSafe for Edge
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