pub enum PreloadingStatus {
Pending,
Running,
Ready,
Success,
Failure,
NotSupported,
}Variants§
Trait Implementations§
Source§impl Clone for PreloadingStatus
impl Clone for PreloadingStatus
Source§fn clone(&self) -> PreloadingStatus
fn clone(&self) -> PreloadingStatus
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 PreloadingStatus
impl Debug for PreloadingStatus
Source§impl<'de> Deserialize<'de> for PreloadingStatus
impl<'de> Deserialize<'de> for PreloadingStatus
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
Source§impl PartialEq for PreloadingStatus
impl PartialEq for PreloadingStatus
Source§impl Serialize for PreloadingStatus
impl Serialize for PreloadingStatus
impl StructuralPartialEq for PreloadingStatus
Auto Trait Implementations§
impl Freeze for PreloadingStatus
impl RefUnwindSafe for PreloadingStatus
impl Send for PreloadingStatus
impl Sync for PreloadingStatus
impl Unpin for PreloadingStatus
impl UnwindSafe for PreloadingStatus
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