pub struct StaleFileInfo {
pub path: String,
pub reason: String,
}Expand description
Stale-file entry used inside CacheStatusPayload::stale_files.
Fields§
§path: StringAbsolute path of the file as recorded in the snapshot.
reason: StringHuman-readable explanation of why the entry is stale.
Trait Implementations§
Source§impl Debug for StaleFileInfo
impl Debug for StaleFileInfo
Auto Trait Implementations§
impl Freeze for StaleFileInfo
impl RefUnwindSafe for StaleFileInfo
impl Send for StaleFileInfo
impl Sync for StaleFileInfo
impl Unpin for StaleFileInfo
impl UnsafeUnpin for StaleFileInfo
impl UnwindSafe for StaleFileInfo
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