chase 0.1.8

Async + sync file-following for people who care about file rotatons and line numbers.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Holds control constructs for continuing or exiting the synchronous
//! watch loop

/// When chasing a file synchronously, use this to control when to exit the
/// follow loop.
#[derive(PartialEq, Eq, Debug)]
pub enum Control {
    Stop,
    Continue,
}