pub enum CopyResult {
Progress(OperationProgress),
Conflict(Conflict),
Complete(OperationComplete),
}Expand description
Result sent through the channel during copy operations.
Variants§
Progress(OperationProgress)
Progress update.
Conflict(Conflict)
A conflict was detected that needs resolution.
Complete(OperationComplete)
The operation completed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CopyResult
impl RefUnwindSafe for CopyResult
impl Send for CopyResult
impl Sync for CopyResult
impl Unpin for CopyResult
impl UnsafeUnpin for CopyResult
impl UnwindSafe for CopyResult
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