pub struct DirSummary {
pub total_size: i64,
pub total_files: i64,
pub total_dirs: i64,
}Fields§
§total_size: i64§total_files: i64§total_dirs: i64Trait Implementations§
Source§impl Clone for DirSummary
impl Clone for DirSummary
Source§fn clone(&self) -> DirSummary
fn clone(&self) -> DirSummary
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 DirSummary
impl Debug for DirSummary
Source§impl<'de> Deserialize<'de> for DirSummary
impl<'de> Deserialize<'de> for DirSummary
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
Auto Trait Implementations§
impl Freeze for DirSummary
impl RefUnwindSafe for DirSummary
impl Send for DirSummary
impl Sync for DirSummary
impl Unpin for DirSummary
impl UnsafeUnpin for DirSummary
impl UnwindSafe for DirSummary
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