pub enum TraverseDirection {
In,
Out,
}Expand description
Direction for graph traversal steps and expansion slots.
Variants§
In
Follow edges pointing toward the current node.
Out
Follow edges pointing away from the current node.
Trait Implementations§
Source§impl Clone for TraverseDirection
impl Clone for TraverseDirection
Source§fn clone(&self) -> TraverseDirection
fn clone(&self) -> TraverseDirection
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 TraverseDirection
impl Debug for TraverseDirection
Source§impl PartialEq for TraverseDirection
impl PartialEq for TraverseDirection
impl Copy for TraverseDirection
impl Eq for TraverseDirection
impl StructuralPartialEq for TraverseDirection
Auto Trait Implementations§
impl Freeze for TraverseDirection
impl RefUnwindSafe for TraverseDirection
impl Send for TraverseDirection
impl Sync for TraverseDirection
impl Unpin for TraverseDirection
impl UnsafeUnpin for TraverseDirection
impl UnwindSafe for TraverseDirection
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