pub enum VerifyArgs {
Files {
before: String,
after: PathBuf,
},
RunId {
run_id: String,
state_dir: PathBuf,
},
}Variants§
Files
before is a file path, or a git revision whose copy of after is compared.
RunId
Compare every file a comments apply run modified against its backup.
Auto Trait Implementations§
impl Freeze for VerifyArgs
impl RefUnwindSafe for VerifyArgs
impl Send for VerifyArgs
impl Sync for VerifyArgs
impl Unpin for VerifyArgs
impl UnsafeUnpin for VerifyArgs
impl UnwindSafe for VerifyArgs
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