pub struct ArchiveStats {
pub total_files: usize,
pub dat_files: Vec<String>,
pub total_size_bytes: u64,
}Expand description
Statistics about a ULS archive.
Fields§
§total_files: usize§dat_files: Vec<String>§total_size_bytes: u64Trait Implementations§
Source§impl Clone for ArchiveStats
impl Clone for ArchiveStats
Source§fn clone(&self) -> ArchiveStats
fn clone(&self) -> ArchiveStats
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 moreAuto Trait Implementations§
impl Freeze for ArchiveStats
impl RefUnwindSafe for ArchiveStats
impl Send for ArchiveStats
impl Sync for ArchiveStats
impl Unpin for ArchiveStats
impl UnsafeUnpin for ArchiveStats
impl UnwindSafe for ArchiveStats
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