pub struct ActivityProgress {
pub done: u64,
pub expected: u64,
pub running: u64,
pub failed: u64,
}Expand description
Activity progress for downloads/uploads/builds
Fields§
§done: u64Bytes completed
expected: u64Total bytes expected
running: u64Currently running transfers
failed: u64Failed transfers
Trait Implementations§
Source§impl Clone for ActivityProgress
impl Clone for ActivityProgress
Source§fn clone(&self) -> ActivityProgress
fn clone(&self) -> ActivityProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActivityProgress
impl Debug for ActivityProgress
Source§impl PartialEq for ActivityProgress
impl PartialEq for ActivityProgress
impl Copy for ActivityProgress
impl Eq for ActivityProgress
impl StructuralPartialEq for ActivityProgress
Auto Trait Implementations§
impl Freeze for ActivityProgress
impl RefUnwindSafe for ActivityProgress
impl Send for ActivityProgress
impl Sync for ActivityProgress
impl Unpin for ActivityProgress
impl UnsafeUnpin for ActivityProgress
impl UnwindSafe for ActivityProgress
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.