pub struct FileStats {Show 13 fields
pub total_files: i64,
pub total_size_bytes: i64,
pub ai_images_count: i64,
pub image_count: i64,
pub image_size_bytes: i64,
pub document_count: i64,
pub document_size_bytes: i64,
pub audio_count: i64,
pub audio_size_bytes: i64,
pub video_count: i64,
pub video_size_bytes: i64,
pub other_count: i64,
pub other_size_bytes: i64,
}Fields§
§total_files: i64§total_size_bytes: i64§ai_images_count: i64§image_count: i64§image_size_bytes: i64§document_count: i64§document_size_bytes: i64§audio_count: i64§audio_size_bytes: i64§video_count: i64§video_size_bytes: i64§other_count: i64§other_size_bytes: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileStats
impl RefUnwindSafe for FileStats
impl Send for FileStats
impl Sync for FileStats
impl Unpin for FileStats
impl UnwindSafe for FileStats
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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