[][src]Struct pipe_logger_lib::PipeLogger

pub struct PipeLogger { /* fields omitted */ }

PipeLogger can help you stores, rotates and compresses logs.

Implementations

impl PipeLogger[src]

pub fn builder<P: AsRef<Path>>(log_path: P) -> PipeLoggerBuilder<P>[src]

Create a new PipeLoggerBuilder.

pub fn write<S: AsRef<str>>(&mut self, text: S) -> Result<Option<PathBuf>>[src]

Write a string. If the log is rotated, this method returns the renamed path.

pub fn write_line<S: AsRef<str>>(&mut self, text: S) -> Result<Option<PathBuf>>[src]

Write a string with a new line. If the log is rotated, this method returns the renamed path.

Trait Implementations

impl Write for PipeLogger[src]

fn write(&mut self, buf: &[u8]) -> Result<usize>[src]

Write UTF-8 data.

Auto Trait Implementations

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.