Struct daggy::walker::Skip [] [src]

pub struct Skip<G, W> { /* fields omitted */ }

A walker that skips the first n steps of this walk, and then yields all further steps.

Methods

impl<G, W> Skip<G, W>
[src]

[src]

Create a new Skip walker..

Trait Implementations

impl<G: Clone, W: Clone> Clone for Skip<G, W>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<G: Debug, W: Debug> Debug for Skip<G, W>
[src]

[src]

Formats the value using the given formatter. Read more

impl<G, W> Walker<G> for Skip<G, W> where
    G: GraphRef,
    W: Walker<G>, 
[src]

[src]

Advance to the next item

Important traits for WalkerIter<W, C>
[src]

Create an iterator out of the walker and given context.

Auto Trait Implementations

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