Struct fts::walkdir::WalkDir [] [src]

pub struct WalkDir {
    // some fields omitted
}

A builder to create an iterator for directory walking.

Methods

impl WalkDir

fn new(conf: WalkDirConf) -> Self

Create new WalkDir configured by specified WalkDirConf.

fn path(&self) -> &str

Return the base directory for directory walking.

Test whether WalkDir follows symblic links.

fn is_cross_device(&self) -> bool

Test whether WalkDir follows symblic links across devices.

fn is_include_dot(&self) -> bool

Test whether WalkDir enumerates . and ...

fn is_no_metadata(&self) -> bool

Test whether WalkDir provides metadata.

fn is_no_chdir(&self) -> bool

Test whether WalkDir change current directory through directory walking.

Trait Implementations

impl IntoIterator for WalkDir

type Item = Result<DirEntry, Error>

type IntoIter = Iter

fn into_iter(self) -> Iter