pub struct ListRow {Show 14 fields
pub actual_content_digest_str: String,
pub actual_size: u64,
pub actual_size_str: String,
pub actual_timestamp: SystemTime,
pub actual_timestamp_str: String,
pub actual_file_type: String,
pub name: String,
pub cache_status: String,
pub recorded_recheck_method: String,
pub recorded_content_digest_str: String,
pub recorded_size: u64,
pub recorded_size_str: String,
pub recorded_timestamp: SystemTime,
pub recorded_timestamp_str: String,
}
Expand description
A single item in the list output
Fields§
§actual_content_digest_str: String
The actual (on-disk) content digest of the file
actual_size: u64
The actual (on-disk) file size
actual_size_str: String
The actual (on-disk) file size as a string
actual_timestamp: SystemTime
The actual (on-disk) file modification timestamp
actual_timestamp_str: String
The actual (on-disk) file modification timestamp as a string
actual_file_type: String
The actual (on-disk) file type
name: String
The basename of the file
cache_status: String
The cache status of the file
recorded_recheck_method: String
The recheck method used to link to the cached file
recorded_content_digest_str: String
The recorded content digest of the file
recorded_size: u64
The recorded size of the file
recorded_size_str: String
The recorded size of the file as a string
recorded_timestamp: SystemTime
The recorded timestamp of the file
recorded_timestamp_str: String
The recorded timestamp of the file as a string
Trait Implementations§
impl StructuralPartialEq for ListRow
Auto Trait Implementations§
impl Freeze for ListRow
impl RefUnwindSafe for ListRow
impl Send for ListRow
impl Sync for ListRow
impl Unpin for ListRow
impl UnwindSafe for ListRow
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