pub struct LogFileStatus {
pub current: PathBuf,
pub current_size: u64,
pub log_files: Vec<PathBuf>,
pub total_size: u64,
}Expand description
State of the log files on disc.
Fields§
§current: PathBufPath to the current log file.
current_size: u64Size of the current log file.
log_files: Vec<PathBuf>List of all log files.
total_size: u64Total size of all log files.
Auto Trait Implementations§
impl Freeze for LogFileStatus
impl RefUnwindSafe for LogFileStatus
impl Send for LogFileStatus
impl Sync for LogFileStatus
impl Unpin for LogFileStatus
impl UnwindSafe for LogFileStatus
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