pub enum ChromeDownloadState {
InProgress,
Paused,
Completed,
Cancelled,
Interrupted,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for ChromeDownloadState
impl Clone for ChromeDownloadState
Source§fn clone(&self) -> ChromeDownloadState
fn clone(&self) -> ChromeDownloadState
Returns a duplicate 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 ChromeDownloadState
impl Debug for ChromeDownloadState
Source§impl From<ChromeDownloadState> for DownloadState
impl From<ChromeDownloadState> for DownloadState
Source§fn from(value: ChromeDownloadState) -> Self
fn from(value: ChromeDownloadState) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeDownloadState
impl PartialEq for ChromeDownloadState
impl Copy for ChromeDownloadState
impl Eq for ChromeDownloadState
impl StructuralPartialEq for ChromeDownloadState
Auto Trait Implementations§
impl Freeze for ChromeDownloadState
impl RefUnwindSafe for ChromeDownloadState
impl Send for ChromeDownloadState
impl Sync for ChromeDownloadState
impl Unpin for ChromeDownloadState
impl UnsafeUnpin for ChromeDownloadState
impl UnwindSafe for ChromeDownloadState
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