pub enum BipartiteEdgeDirection {
Out,
In,
All,
}Expand description
Edge direction pattern in a directed bipartite graph.
Variants§
Out
All edges go from type-false to type-true vertices.
In
All edges go from type-true to type-false vertices.
All
Edges go in both directions, or graph is undirected.
Trait Implementations§
Source§impl Clone for BipartiteEdgeDirection
impl Clone for BipartiteEdgeDirection
Source§fn clone(&self) -> BipartiteEdgeDirection
fn clone(&self) -> BipartiteEdgeDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BipartiteEdgeDirection
impl Debug for BipartiteEdgeDirection
Source§impl PartialEq for BipartiteEdgeDirection
impl PartialEq for BipartiteEdgeDirection
impl Copy for BipartiteEdgeDirection
impl Eq for BipartiteEdgeDirection
impl StructuralPartialEq for BipartiteEdgeDirection
Auto Trait Implementations§
impl Freeze for BipartiteEdgeDirection
impl RefUnwindSafe for BipartiteEdgeDirection
impl Send for BipartiteEdgeDirection
impl Sync for BipartiteEdgeDirection
impl Unpin for BipartiteEdgeDirection
impl UnsafeUnpin for BipartiteEdgeDirection
impl UnwindSafe for BipartiteEdgeDirection
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