pub struct TimelineEntry {
pub path: String,
pub is_dir: bool,
pub size: u32,
pub modify_ts: Option<[u8; 7]>,
pub anomaly: Option<String>,
}Expand description
A directory entry with its modification timestamp for timeline analysis.
Fields§
§path: StringFull path in the ISO.
is_dir: bool§size: u32§modify_ts: Option<[u8; 7]>Short (7-byte) Rock Ridge modify timestamp, if present.
anomaly: Option<String>Detected anomaly, e.g. "epoch-date".
Trait Implementations§
Source§impl Clone for TimelineEntry
impl Clone for TimelineEntry
Source§fn clone(&self) -> TimelineEntry
fn clone(&self) -> TimelineEntry
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 moreAuto Trait Implementations§
impl Freeze for TimelineEntry
impl RefUnwindSafe for TimelineEntry
impl Send for TimelineEntry
impl Sync for TimelineEntry
impl Unpin for TimelineEntry
impl UnsafeUnpin for TimelineEntry
impl UnwindSafe for TimelineEntry
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