pub struct Verified {
pub paths: Vec<Planned>,
pub racy: Vec<Planned>,
pub considered: usize,
}Expand description
What the verification pass concluded about the target tree.
Fields§
§paths: Vec<Planned>Paths whose source file may stand in for a checkout.
racy: Vec<Planned>Paths whose stat data fell in the racily-clean window, for git to settle.
considered: usizeHow many blobs the target tree holds in total.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Verified
impl RefUnwindSafe for Verified
impl Send for Verified
impl Sync for Verified
impl Unpin for Verified
impl UnsafeUnpin for Verified
impl UnwindSafe for Verified
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