pub enum EdgeTy {
Pair(Vertex, Vertex),
Chain(Vec<Vertex>),
}
Expand description
the component depicts a type of the edge, namely it is a pair of chain. From the graph point of view, it impacts a compact display only.
Variants§
Trait Implementations§
impl StructuralPartialEq for EdgeTy
Auto Trait Implementations§
impl Freeze for EdgeTy
impl RefUnwindSafe for EdgeTy
impl Send for EdgeTy
impl Sync for EdgeTy
impl Unpin for EdgeTy
impl UnwindSafe for EdgeTy
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