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