1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![allow(unused_variables)]

use std::sync::mpsc::Sender;
use std::path::Path;
use super::{Error, Event, Watcher};

pub struct NullWatcher;

impl Watcher for NullWatcher {
  fn new(tx: Sender<Event>) -> Result<NullWatcher, Error> {
    Ok(NullWatcher)
  }

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

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