pub struct CopyProgress {
pub bytes_copied: u64,
pub bytes_total: u64,
}
Fields§
§bytes_copied: u64
§bytes_total: u64
Trait Implementations§
source§impl Clone for CopyProgress
impl Clone for CopyProgress
source§fn clone(&self) -> CopyProgress
fn clone(&self) -> CopyProgress
Returns a copy 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 CopyProgress
impl Debug for CopyProgress
source§impl<'de> Deserialize<'de> for CopyProgress
impl<'de> Deserialize<'de> for CopyProgress
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for CopyProgress
impl Display for CopyProgress
source§impl FromStr for CopyProgress
impl FromStr for CopyProgress
source§impl PartialEq for CopyProgress
impl PartialEq for CopyProgress
source§impl Serialize for CopyProgress
impl Serialize for CopyProgress
impl Eq for CopyProgress
impl StructuralPartialEq for CopyProgress
Auto Trait Implementations§
impl Freeze for CopyProgress
impl RefUnwindSafe for CopyProgress
impl Send for CopyProgress
impl Sync for CopyProgress
impl Unpin for CopyProgress
impl UnwindSafe for CopyProgress
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.