pub enum DownloadStatus {
Idle,
Checking,
Downloading,
Complete,
Failed,
}Expand description
Download status enum
Variants§
Idle
No download in progress
Checking
Checking file existence/size
Downloading
Download in progress
Complete
Download complete
Failed
Download failed
Implementations§
Trait Implementations§
Source§impl Clone for DownloadStatus
impl Clone for DownloadStatus
Source§fn clone(&self) -> DownloadStatus
fn clone(&self) -> DownloadStatus
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 DownloadStatus
impl Debug for DownloadStatus
Source§impl PartialEq for DownloadStatus
impl PartialEq for DownloadStatus
impl Copy for DownloadStatus
impl Eq for DownloadStatus
impl StructuralPartialEq for DownloadStatus
Auto Trait Implementations§
impl Freeze for DownloadStatus
impl RefUnwindSafe for DownloadStatus
impl Send for DownloadStatus
impl Sync for DownloadStatus
impl Unpin for DownloadStatus
impl UnwindSafe for DownloadStatus
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