Enum ignore::WalkState[][src]

pub enum WalkState {
    Continue,
    Skip,
    Quit,
}

WalkState is used in the parallel recursive directory iterator to indicate whether walking should continue as normal, skip descending into a particular directory or quit the walk entirely.

Variants

Continue walking as normal.

If the directory entry given is a directory, don't descend into it. In all other cases, this has no effect.

Quit the entire iterator as soon as possible.

Note that this is an inherently asynchronous action. It is possible for more entries to be yielded even after instructing the iterator to quit.

Trait Implementations

impl Clone for WalkState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for WalkState
[src]

impl Debug for WalkState
[src]

Formats the value using the given formatter. Read more

impl Eq for WalkState
[src]

impl PartialEq for WalkState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for WalkState

impl Sync for WalkState