pub enum IteratorMovement {
Progressed,
Looped,
}
Expand description
The method by which the iterator produced an element
Variants§
Progressed
The iterator produced an element by progressing to the next node
Looped
The iterator reached the end of the tree and looped back to the root
Trait Implementations§
Source§impl Clone for IteratorMovement
impl Clone for IteratorMovement
Source§fn clone(&self) -> IteratorMovement
fn clone(&self) -> IteratorMovement
Returns a copy 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 IteratorMovement
impl Debug for IteratorMovement
Source§impl PartialEq for IteratorMovement
impl PartialEq for IteratorMovement
impl Copy for IteratorMovement
impl Eq for IteratorMovement
impl StructuralPartialEq for IteratorMovement
Auto Trait Implementations§
impl Freeze for IteratorMovement
impl RefUnwindSafe for IteratorMovement
impl Send for IteratorMovement
impl Sync for IteratorMovement
impl Unpin for IteratorMovement
impl UnwindSafe for IteratorMovement
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