ed-journals 0.13.0

Provides models for representing and parsing elite dangerous journal files
Documentation
1
2
3
4
5
6
7
8
use crate::fs::BlockResult;

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