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