pub struct RollingConfig {
pub base_path: PathBuf,
pub file_name_prefix: String,
pub roll_period: Option<RollingPeriod>,
pub max_roll_files: Option<usize>,
pub compress: bool,
/* private fields */
}Fields§
§base_path: PathBuf§file_name_prefix: String§roll_period: Option<RollingPeriod>§max_roll_files: Option<usize>§compress: boolTrait Implementations§
Source§impl Clone for RollingConfig
impl Clone for RollingConfig
Source§fn clone(&self) -> RollingConfig
fn clone(&self) -> RollingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RollingConfig
impl Debug for RollingConfig
Auto Trait Implementations§
impl Freeze for RollingConfig
impl RefUnwindSafe for RollingConfig
impl Send for RollingConfig
impl Sync for RollingConfig
impl Unpin for RollingConfig
impl UnwindSafe for RollingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more