pub enum Refresh {
Unchanged,
Updated,
}Expand description
Result of revalidating a single file against what’s on disk.
Variants§
Unchanged
Nothing to do — content hash still matches, or the file couldn’t be read
right now (left in place rather than forgotten — see refresh_file).
Updated
File changed; its symbols were re-extracted.
Trait Implementations§
impl Copy for Refresh
impl Eq for Refresh
impl StructuralPartialEq for Refresh
Auto Trait Implementations§
impl Freeze for Refresh
impl RefUnwindSafe for Refresh
impl Send for Refresh
impl Sync for Refresh
impl Unpin for Refresh
impl UnsafeUnpin for Refresh
impl UnwindSafe for Refresh
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