pub struct NCEdge<T: OptFields> {
pub from: u32,
pub from_dir: bool,
pub to: u32,
pub to_dir: bool,
pub overlap: String,
pub opt: T,
}
Expand description
Graph edges
- From
- From direction
- To
- To direction
- Overlap (Link + containment)
- Pos
- Ops
Comment: Edges go forward (true) or backward (false) to/from a node.
Fields§
§from: u32
§from_dir: bool
§to: u32
§to_dir: bool
§overlap: String
§opt: T
Trait Implementations§
impl<T: OptFields> StructuralPartialEq for NCEdge<T>
Auto Trait Implementations§
impl<T> Freeze for NCEdge<T>where
T: Freeze,
impl<T> RefUnwindSafe for NCEdge<T>where
T: RefUnwindSafe,
impl<T> Send for NCEdge<T>where
T: Send,
impl<T> Sync for NCEdge<T>where
T: Sync,
impl<T> Unpin for NCEdge<T>where
T: Unpin,
impl<T> UnwindSafe for NCEdge<T>where
T: UnwindSafe,
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