[−][src]Struct staart::TailedFile
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>[src]
impl<'a> Send for TailedFile<'a>[src]
impl<'a> Sync for TailedFile<'a>[src]
impl<'a> Unpin for TailedFile<'a>[src]
impl<'a> UnwindSafe for TailedFile<'a>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,