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