pub enum Restaged {
Done(Vec<Vec<u8>>),
Skipped(String),
}Expand description
What restage did.
Variants§
Done(Vec<Vec<u8>>)
The paths whose entries were repointed, in the order the index stores them. A path the caller asked about and that is missing here was not re-staged, whatever the reason.
Skipped(String)
Nothing was written, and why.
Trait Implementations§
impl Eq for Restaged
impl StructuralPartialEq for Restaged
Auto Trait Implementations§
impl Freeze for Restaged
impl RefUnwindSafe for Restaged
impl Send for Restaged
impl Sync for Restaged
impl Unpin for Restaged
impl UnsafeUnpin for Restaged
impl UnwindSafe for Restaged
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