pub enum GetProgressItem {
Progress(u64),
Done(Stats),
Error(GetError),
}
Variants§
Progress(u64)
Progress on the payload bytes read.
Done(Stats)
The request was completed.
Error(GetError)
The request was closed, but not completed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetProgressItem
impl !RefUnwindSafe for GetProgressItem
impl Send for GetProgressItem
impl Sync for GetProgressItem
impl Unpin for GetProgressItem
impl !UnwindSafe for GetProgressItem
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