#[non_exhaustive]pub enum AssetDownloadTaskState {
Running,
Suspended,
Canceling,
Completed,
Unknown(i32),
}Expand description
Re-exports the AVPlayer framework surface for this item.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for AssetDownloadTaskState
impl Clone for AssetDownloadTaskState
Source§fn clone(&self) -> AssetDownloadTaskState
fn clone(&self) -> AssetDownloadTaskState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssetDownloadTaskState
impl Debug for AssetDownloadTaskState
Source§impl Hash for AssetDownloadTaskState
impl Hash for AssetDownloadTaskState
Source§impl PartialEq for AssetDownloadTaskState
impl PartialEq for AssetDownloadTaskState
Source§fn eq(&self, other: &AssetDownloadTaskState) -> bool
fn eq(&self, other: &AssetDownloadTaskState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AssetDownloadTaskState
impl Eq for AssetDownloadTaskState
impl StructuralPartialEq for AssetDownloadTaskState
Auto Trait Implementations§
impl Freeze for AssetDownloadTaskState
impl RefUnwindSafe for AssetDownloadTaskState
impl Send for AssetDownloadTaskState
impl Sync for AssetDownloadTaskState
impl Unpin for AssetDownloadTaskState
impl UnsafeUnpin for AssetDownloadTaskState
impl UnwindSafe for AssetDownloadTaskState
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