Struct BackgroundUploadProgress
#[repr(C)]pub struct BackgroundUploadProgress {
pub BytesReceived: u64,
pub BytesSent: u64,
pub TotalBytesToReceive: u64,
pub TotalBytesToSend: u64,
pub Status: BackgroundTransferStatus,
pub HasResponseChanged: bool,
pub HasRestarted: bool,
}
Fields§
§BytesReceived: u64
§BytesSent: u64
§TotalBytesToReceive: u64
§TotalBytesToSend: u64
§Status: BackgroundTransferStatus
§HasResponseChanged: bool
§HasRestarted: bool
Trait Implementations§
§impl Clone for BackgroundUploadProgress
impl Clone for BackgroundUploadProgress
§fn clone(&self) -> BackgroundUploadProgress
fn clone(&self) -> BackgroundUploadProgress
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 more§impl Debug for BackgroundUploadProgress
impl Debug for BackgroundUploadProgress
§impl Default for BackgroundUploadProgress
impl Default for BackgroundUploadProgress
§fn default() -> BackgroundUploadProgress
fn default() -> BackgroundUploadProgress
Returns the “default value” for a type. Read more
§impl PartialEq for BackgroundUploadProgress
impl PartialEq for BackgroundUploadProgress
impl Copy for BackgroundUploadProgress
impl StructuralPartialEq for BackgroundUploadProgress
Auto Trait Implementations§
impl Freeze for BackgroundUploadProgress
impl RefUnwindSafe for BackgroundUploadProgress
impl Send for BackgroundUploadProgress
impl Sync for BackgroundUploadProgress
impl Unpin for BackgroundUploadProgress
impl UnwindSafe for BackgroundUploadProgress
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