pub enum ContentState {
Show 28 variants
Unknown,
ReadyToDownload,
ServerQueued,
Downloading,
DownloadPaused,
ReadyToActivate,
ReadyToDecrypt,
Decrypting,
ReadyToUnpack,
Unpacking,
ReadyToInstall,
Installing,
ReadyToPlay,
ReadyToUse,
Installed,
WaitingToDownload,
WaitingToDecrypt,
DownloadExpired,
DecryptExpired,
InvalidContent,
Playing,
FinalizingDownload,
PreparingDownload,
Updating,
Verifying,
ReadyToUpdate,
UpdatePaused,
DownloadQueued,
}Variants§
Unknown
ReadyToDownload
ServerQueued
Downloading
DownloadPaused
ReadyToActivate
ReadyToDecrypt
Decrypting
ReadyToUnpack
Unpacking
ReadyToInstall
Installing
ReadyToPlay
ReadyToUse
Installed
WaitingToDownload
WaitingToDecrypt
DownloadExpired
DecryptExpired
InvalidContent
Playing
FinalizingDownload
PreparingDownload
Updating
Verifying
ReadyToUpdate
UpdatePaused
DownloadQueued
Trait Implementations§
Source§impl Debug for ContentState
impl Debug for ContentState
Source§impl<'de> Deserialize<'de> for ContentState
impl<'de> Deserialize<'de> for ContentState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContentState
impl RefUnwindSafe for ContentState
impl Send for ContentState
impl Sync for ContentState
impl Unpin for ContentState
impl UnwindSafe for ContentState
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