Struct yadf::Yadf[][src]

pub struct Yadf<'a, P> where
    P: AsRef<Path>, 
{ /* fields omitted */ }

Search configuration

Example

let counter = yadf::Yadf::builder()
    .paths(&["path/to/somewhere", "another/path"]) // required
    .minimum_file_size(64) // optional
    .maximum_file_size(1024 * 8) // optional
    .regex(None) // optional
    .glob(None) // optional
    .build()
    .scan::<highway::HighwayHasher>();

see the docs for the YadfBuilder

Implementations

impl<'a, P> Yadf<'a, P> where
    P: AsRef<Path>, 
[src]

pub fn builder() -> YadfBuilder<'a, ((), (), (), (), (), ()), P>[src]

Create a builder for building Yadf. On the builder, call .paths(...), .minimum_file_size(...)(optional), .maximum_file_size(...)(optional), .max_depth(...)(optional), .regex(...)(optional), .glob(...)(optional) to set the values of the fields (they accept Into values). Finally, call .build() to create the instance of Yadf.

impl<P> Yadf<'_, P> where
    P: AsRef<Path>, 
[src]

pub fn scan<H>(self) -> FileCounter where
    H: Hasher + Default
[src]

This will attemps a complete scan according to its configuration.

Trait Implementations

impl<'a, P: Debug> Debug for Yadf<'a, P> where
    P: AsRef<Path>, 
[src]

impl<'a, P: Default> Default for Yadf<'a, P> where
    P: AsRef<Path>, 
[src]

Auto Trait Implementations

impl<'a, P> !RefUnwindSafe for Yadf<'a, P>[src]

impl<'a, P> Send for Yadf<'a, P> where
    P: Sync
[src]

impl<'a, P> Sync for Yadf<'a, P> where
    P: Sync
[src]

impl<'a, P> Unpin for Yadf<'a, P>[src]

impl<'a, P> UnwindSafe for Yadf<'a, P> where
    P: RefUnwindSafe
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,