pub enum EdgeVisitMark {
VisitNone,
VisitInStack,
VisitDone,
}Variants§
Trait Implementations§
Source§impl Clone for EdgeVisitMark
impl Clone for EdgeVisitMark
Source§fn clone(&self) -> EdgeVisitMark
fn clone(&self) -> EdgeVisitMark
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 moreimpl Copy for EdgeVisitMark
Auto Trait Implementations§
impl Freeze for EdgeVisitMark
impl RefUnwindSafe for EdgeVisitMark
impl Send for EdgeVisitMark
impl Sync for EdgeVisitMark
impl Unpin for EdgeVisitMark
impl UnwindSafe for EdgeVisitMark
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