1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//! Stub Watcher implementation

#![allow(unused_variables)]

use super::{DebouncedEvent, RawEvent, RecursiveMode, Result, Watcher};
use std::path::Path;
use std::sync::mpsc::Sender;
use std::time::Duration;

/// Stub `Watcher` implementation
///
/// Events are never delivered from this watcher.
pub struct NullWatcher;

impl Watcher for NullWatcher {
    fn new_raw(tx: Sender<RawEvent>) -> Result<NullWatcher> {
        Ok(NullWatcher)
    }

    fn new(tx: Sender<DebouncedEvent>, delay: Duration) -> Result<NullWatcher> {
        Ok(NullWatcher)
    }

    fn watch<P: AsRef<Path>>(&mut self, path: P, recursive_mode: RecursiveMode) -> Result<()> {
        Ok(())
    }

    fn unwatch<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
        Ok(())
    }
}