usecrate::fs::BlockResult;/// Mechanism that is given to some watcher to unblock the associated blocker. Should always be
/// callable in sync code.
pubtraitUnblocker: Send + Sync {/// Unblock the associated blocker.
fnunblock(&self, result: BlockResult)-> BlockResult;}