pub enum WorkerOutcome {
Finished,
Fatal(TransferError),
}Expand description
Outcome of a worker’s whole run.
Variants§
Finished
No work left, or cancelled.
Fatal(TransferError)
A range failed permanently; the download cannot complete.
Auto Trait Implementations§
impl Freeze for WorkerOutcome
impl RefUnwindSafe for WorkerOutcome
impl Send for WorkerOutcome
impl Sync for WorkerOutcome
impl Unpin for WorkerOutcome
impl UnsafeUnpin for WorkerOutcome
impl UnwindSafe for WorkerOutcome
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