pub struct PathStaleness {
pub path: String,
pub status: PathStatus,
pub touched_at: Option<String>,
}Fields§
§path: String§status: PathStatus§touched_at: Option<String>mtime as ISO 8601 (RFC 3339) when known; otherwise absent.
Trait Implementations§
Source§impl Clone for PathStaleness
impl Clone for PathStaleness
Source§fn clone(&self) -> PathStaleness
fn clone(&self) -> PathStaleness
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 PathStaleness
impl Debug for PathStaleness
Auto Trait Implementations§
impl Freeze for PathStaleness
impl RefUnwindSafe for PathStaleness
impl Send for PathStaleness
impl Sync for PathStaleness
impl Unpin for PathStaleness
impl UnsafeUnpin for PathStaleness
impl UnwindSafe for PathStaleness
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