pub struct Edge {
pub source_id: String,
pub target_name: String,
pub target_id: Option<String>,
pub kind: EdgeKind,
pub file_path: String,
pub line: u32,
}Fields§
§source_id: String§target_name: String§target_id: Option<String>§kind: EdgeKind§file_path: String§line: u32Implementations§
Trait Implementations§
impl Eq 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