pub struct DirSummaryLite {
pub size: Option<i64>,
pub files: Option<i64>,
pub dirs: Option<i64>,
}Expand description
The aggregate subtree counters under a directory entry’s summ block —
the subset of DirSummary a directory listing renders. All optional:
kopia may extend or omit counters across releases.
Fields§
§size: Option<i64>Total logical size of the subtree in bytes.
files: Option<i64>Number of files in the subtree.
dirs: Option<i64>Number of directories in the subtree.
Trait Implementations§
Source§impl Clone for DirSummaryLite
impl Clone for DirSummaryLite
Source§fn clone(&self) -> DirSummaryLite
fn clone(&self) -> DirSummaryLite
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DirSummaryLite
impl Debug for DirSummaryLite
Source§impl<'de> Deserialize<'de> for DirSummaryLite
impl<'de> Deserialize<'de> for DirSummaryLite
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DirSummaryLite
impl PartialEq for DirSummaryLite
Source§fn eq(&self, other: &DirSummaryLite) -> bool
fn eq(&self, other: &DirSummaryLite) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DirSummaryLite
impl Serialize for DirSummaryLite
impl Eq for DirSummaryLite
impl StructuralPartialEq for DirSummaryLite
Auto Trait Implementations§
impl Freeze for DirSummaryLite
impl RefUnwindSafe for DirSummaryLite
impl Send for DirSummaryLite
impl Sync for DirSummaryLite
impl Unpin for DirSummaryLite
impl UnsafeUnpin for DirSummaryLite
impl UnwindSafe for DirSummaryLite
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