pub struct Info {
pub created: DateTime<Utc>,
pub modified: DateTime<Utc>,
pub blocks: u64,
pub files: u64,
}
Expand description
Information/statistics from the archive.
Fields§
§created: DateTime<Utc>
Time when the archive was created
modified: DateTime<Utc>
Time when the last entry was appended
blocks: u64
Number of blocks allocated for the archive
files: u64
Number of files stored in the archive
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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