pub enum SimpleCycleMode {
Out,
In,
All,
}Expand description
Mode for following edges during cycle search.
Variants§
Out
Follow outgoing edges (directed graphs only).
In
Follow incoming edges (directed graphs only).
All
Ignore edge directions.
Trait Implementations§
Source§impl Clone for SimpleCycleMode
impl Clone for SimpleCycleMode
Source§fn clone(&self) -> SimpleCycleMode
fn clone(&self) -> SimpleCycleMode
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 SimpleCycleMode
impl Debug for SimpleCycleMode
Source§impl PartialEq for SimpleCycleMode
impl PartialEq for SimpleCycleMode
impl Copy for SimpleCycleMode
impl Eq for SimpleCycleMode
impl StructuralPartialEq for SimpleCycleMode
Auto Trait Implementations§
impl Freeze for SimpleCycleMode
impl RefUnwindSafe for SimpleCycleMode
impl Send for SimpleCycleMode
impl Sync for SimpleCycleMode
impl Unpin for SimpleCycleMode
impl UnsafeUnpin for SimpleCycleMode
impl UnwindSafe for SimpleCycleMode
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