#[repr(C)]pub struct BackgroundDownloadProgress {
pub BytesReceived: u64,
pub TotalBytesToReceive: u64,
pub Status: BackgroundTransferStatus,
pub HasResponseChanged: bool,
pub HasRestarted: bool,
}
Expand description
Required features: "Networking_BackgroundTransfer"
Fields
BytesReceived: u64
TotalBytesToReceive: u64
Status: BackgroundTransferStatus
HasResponseChanged: bool
HasRestarted: bool
Trait Implementations
impl Clone for BackgroundDownloadProgress
impl Clone for BackgroundDownloadProgress
impl Copy for BackgroundDownloadProgress
Auto Trait Implementations
impl RefUnwindSafe for BackgroundDownloadProgress
impl Send for BackgroundDownloadProgress
impl Sync for BackgroundDownloadProgress
impl Unpin for BackgroundDownloadProgress
impl UnwindSafe for BackgroundDownloadProgress
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