Struct senile::crawler::Crawler[][src]

pub struct Crawler<'s> { /* fields omitted */ }

The crawler type that goes through a (sub-)tree of a file/directory (inode) and recursively gets files.

Implementations

impl<'s> Crawler<'s>[src]

pub fn new(matcher: &'s Regex) -> Self[src]

Constructor for the crawler. Accepting the regex which shall match the (fully qualified, relative) file names.

pub fn crawl(
    &self,
    path: &str,
    sender: Sender<String>
) -> Result<(), Box<dyn Error>>
[src]

Executing the crawl, sending the results during the operation through the sender argument.

Auto Trait Implementations

impl<'s> RefUnwindSafe for Crawler<'s>

impl<'s> Send for Crawler<'s>

impl<'s> Sync for Crawler<'s>

impl<'s> Unpin for Crawler<'s>

impl<'s> UnwindSafe for Crawler<'s>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.