Struct staart::TailedFile[][src]

pub struct TailedFile<'a> { /* fields omitted */ }

TailedFile tracks the state of a file being followed. It offers methods for updating this state, and printing data to stdout. The user may define the duration between updates if operating in a loop with delay.

Implementations

impl<'a> TailedFile<'a>[src]

pub fn new(path: &str) -> Result<TailedFile<'_>>[src]

Creates an instance of std::io::Result<staart::TailedFile>

Example

let mut f = staart::TailedFile::new("/var/log/syslog");

Defaults

  • delay: 100ms

Propagates Errors

  • If the path provided does not exist, or is not readable by the current user
  • If file metadata can not be read

pub fn update_status(&mut self) -> Result<()>[src]

Updates the status of an instance of staart::TailedFile

File metadata are refreshed, and the position is updated if changes have occured since the last read operation.

pub fn read(&mut self) -> Result<Vec<u8>>[src]

Reads new data for an instance of staart::TailedFile and returns std::io::Result<Vec<u8>>

pub fn follow(&mut self) -> Result<(), Box<dyn Error>>[src]

Prints new data read on an instance of staart::TailedFile to stdout

pub fn set_delay(&mut self, d: u64)[src]

Sets a delay duration, in milliseconds, for an instance of staart::TailedFile. This value is used when calling staart::TailedFile::sleep().

pub fn sleep(&mut self)[src]

Sleeps for staart::TailedFile.delay milliseconds

Auto Trait Implementations

impl<'a> RefUnwindSafe for TailedFile<'a>

impl<'a> Send for TailedFile<'a>

impl<'a> Sync for TailedFile<'a>

impl<'a> Unpin for TailedFile<'a>

impl<'a> UnwindSafe for TailedFile<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.