pub struct ResultDirectoriesUsageDataItem {
pub ads_cnt: i32,
pub dir_cnt: i32,
pub file_cnt: i32,
pub has_subdirs: bool,
pub lin: i32,
pub log_size_sum: u64,
pub log_size_sum_overflow: u64,
pub name: String,
pub other_cnt: i32,
pub parent: i32,
pub phys_size_sum: u64,
}
Fields§
§ads_cnt: i32
Number of alternate data streams.
dir_cnt: i32
Number of directories.
file_cnt: i32
Number of files.
has_subdirs: bool
Defines if directory has subdirectories.
lin: i32
Logical inode number.
log_size_sum: u64
Logical size directory in bytes.
log_size_sum_overflow: u64
Logical size sum of overflow in bytes.
name: String
Name of directory.
other_cnt: i32
Other count.
parent: i32
Parent directory inode.
phys_size_sum: u64
Physical size directory in bytes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ResultDirectoriesUsageDataItem
impl<'de> Deserialize<'de> for ResultDirectoriesUsageDataItem
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 ResultDirectoriesUsageDataItem
impl RefUnwindSafe for ResultDirectoriesUsageDataItem
impl Send for ResultDirectoriesUsageDataItem
impl Sync for ResultDirectoriesUsageDataItem
impl Unpin for ResultDirectoriesUsageDataItem
impl UnwindSafe for ResultDirectoriesUsageDataItem
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more