notify_debouncer_mini

Type Alias DebounceEventResult

Source
pub type DebounceEventResult = Result<Vec<DebouncedEvent>, Error>;
Expand description

A result of debounced events. Comes with either a vec of events or an immediate error.

Aliased Type§

enum DebounceEventResult {
    Ok(Vec<DebouncedEvent>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Vec<DebouncedEvent>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value