pub struct StoreReport {
pub tool: &'static str,
pub root: PathBuf,
pub files: usize,
pub bytes: u64,
pub oldest: Option<DateTime<Utc>>,
pub newest: Option<DateTime<Utc>>,
}Expand description
One discovered session store on disk (for scan).
Fields§
§tool: &'static str§root: PathBuf§files: usize§bytes: u64§oldest: Option<DateTime<Utc>>§newest: Option<DateTime<Utc>>Auto Trait Implementations§
impl Freeze for StoreReport
impl RefUnwindSafe for StoreReport
impl Send for StoreReport
impl Sync for StoreReport
impl Unpin for StoreReport
impl UnsafeUnpin for StoreReport
impl UnwindSafe for StoreReport
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