#[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,
}
Expand description
Required features: "Networking_BackgroundTransfer"
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
impl Copy for BackgroundUploadProgress
Auto Trait Implementations
impl RefUnwindSafe for BackgroundUploadProgress
impl Send for BackgroundUploadProgress
impl Sync for BackgroundUploadProgress
impl Unpin for BackgroundUploadProgress
impl UnwindSafe for BackgroundUploadProgress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more