Enum xvc_file::recheck::RecheckOperation
source · pub enum RecheckOperation {
Recheck {
xvc_path: XvcPath,
content_digest: ContentDigest,
recheck_method: RecheckMethod,
},
}Expand description
Recheck messages to be sent to the channel created by make_recheck_handler.
Variants§
Recheck
Fields
§
content_digest: ContentDigestThe content digest of the file to recheck.
§
recheck_method: RecheckMethodThe recheck method that defines whether to recheck by copy, hardlink, symlink, reflink.
Recheck message to copy/link path described by content_digest to xvc_path.
Auto Trait Implementations§
impl RefUnwindSafe for RecheckOperation
impl Send for RecheckOperation
impl Sync for RecheckOperation
impl Unpin for RecheckOperation
impl UnwindSafe for RecheckOperation
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