pub enum TraversalDirection {
Outgoing,
Incoming,
Both,
}Expand description
Direction for graph traversal
Variants§
Trait Implementations§
Source§impl Clone for TraversalDirection
impl Clone for TraversalDirection
Source§fn clone(&self) -> TraversalDirection
fn clone(&self) -> TraversalDirection
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 TraversalDirection
impl Debug for TraversalDirection
impl Copy for TraversalDirection
Auto Trait Implementations§
impl Freeze for TraversalDirection
impl RefUnwindSafe for TraversalDirection
impl Send for TraversalDirection
impl Sync for TraversalDirection
impl Unpin for TraversalDirection
impl UnwindSafe for TraversalDirection
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