pub struct Skip<G, W> { /* private fields */ }
Expand description
A walker that skips the first n steps of this walk, and then yields all further steps.
Implementations
Trait Implementations
Auto Trait Implementations
impl<G, W> RefUnwindSafe for Skip<G, W> where
G: RefUnwindSafe,
W: RefUnwindSafe,
impl<G, W> Send for Skip<G, W> where
G: Send,
W: Send,
impl<G, W> Sync for Skip<G, W> where
G: Sync,
W: Sync,
impl<G, W> Unpin for Skip<G, W> where
G: Unpin,
W: Unpin,
impl<G, W> UnwindSafe for Skip<G, W> where
G: UnwindSafe,
W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more