pub struct Edge {
pub source: String,
pub target: String,
pub edge_type: EdgeType,
}Expand description
An edge connecting two ADRs in the graph.
Fields§
§source: StringSource ADR identifier.
target: StringTarget ADR identifier.
edge_type: EdgeTypeType of relationship.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Edge
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin 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