pub struct UndoReport {
pub restored: usize,
pub skipped: Vec<SkippedCopy>,
}Expand description
Result of crate::Shelf::undo.
Fields§
§restored: usizeCopies restored to independent files.
skipped: Vec<SkippedCopy>Targets that could not be restored, with reasons.
Trait Implementations§
Source§impl Clone for UndoReport
impl Clone for UndoReport
Source§fn clone(&self) -> UndoReport
fn clone(&self) -> UndoReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UndoReport
impl Debug for UndoReport
Source§impl Default for UndoReport
impl Default for UndoReport
Source§fn default() -> UndoReport
fn default() -> UndoReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UndoReport
impl RefUnwindSafe for UndoReport
impl Send for UndoReport
impl Sync for UndoReport
impl Unpin for UndoReport
impl UnsafeUnpin for UndoReport
impl UnwindSafe for UndoReport
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