[−][src]Struct rotating_file::RotatingFile
A thread-safe rotating file with customizable rotation behavior.
Implementations
impl RotatingFile[src]
pub fn new(
root_dir: &str,
size: Option<usize>,
interval: Option<u64>,
compression: Option<Compression>,
date_format: Option<String>,
prefix: Option<String>,
suffix: Option<String>
) -> Self[src]
root_dir: &str,
size: Option<usize>,
interval: Option<u64>,
compression: Option<Compression>,
date_format: Option<String>,
prefix: Option<String>,
suffix: Option<String>
) -> Self
Creates a new RotatingFile.
Arguments
root_dirThe directory to store files.sizeMax size(in kilobytes) of the file after which it will rotate,Noneand0mean unlimited.intervalHow often(in seconds) to rotate, 0 means unlimited.compressionAvailable values areGZipandZip, default toNonedate_formatuses the syntax from chrono https://docs.rs/chrono/latest/chrono/format/strftime/, default to%Y-%m-%d-%H-%M-%SprefixFile name prefix, default to emptysuffixFile name suffix, default to.log
pub fn writeln(&self, s: &str) -> Result<(), Error>[src]
pub fn close(&self)[src]
Trait Implementations
impl Send for RotatingFile[src]
impl Sync for RotatingFile[src]
Auto Trait Implementations
impl RefUnwindSafe for RotatingFile[src]
impl Unpin for RotatingFile[src]
impl UnwindSafe for RotatingFile[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>,