pub struct UpdateTransferProgress {
pub cur_xfer: Option<(u32, u32)>,
pub percent: u8,
pub bps: f32,
pub duration: Duration,
pub remaining: Duration,
pub complete: bool,
}Fields§
§cur_xfer: Option<(u32, u32)>§percent: u8§bps: f32§duration: Duration§remaining: Duration§complete: boolAuto Trait Implementations§
impl Freeze for UpdateTransferProgress
impl RefUnwindSafe for UpdateTransferProgress
impl Send for UpdateTransferProgress
impl Sync for UpdateTransferProgress
impl Unpin for UpdateTransferProgress
impl UnwindSafe for UpdateTransferProgress
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