pub enum LobbyUpdateClientStatusRequestDataAssetStatus {
Missing,
Downloading,
Complete,
}Expand description
LobbyUpdateClientStatusRequestDataAssetStatus
JSON schema
{
"enum": [
"missing",
"downloading",
"complete"
]
}Variants§
Trait Implementations§
Source§impl Clone for LobbyUpdateClientStatusRequestDataAssetStatus
impl Clone for LobbyUpdateClientStatusRequestDataAssetStatus
Source§fn clone(&self) -> LobbyUpdateClientStatusRequestDataAssetStatus
fn clone(&self) -> LobbyUpdateClientStatusRequestDataAssetStatus
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<'de> Deserialize<'de> for LobbyUpdateClientStatusRequestDataAssetStatus
impl<'de> Deserialize<'de> for LobbyUpdateClientStatusRequestDataAssetStatus
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 Ord for LobbyUpdateClientStatusRequestDataAssetStatus
impl Ord for LobbyUpdateClientStatusRequestDataAssetStatus
Source§fn cmp(&self, other: &LobbyUpdateClientStatusRequestDataAssetStatus) -> Ordering
fn cmp(&self, other: &LobbyUpdateClientStatusRequestDataAssetStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LobbyUpdateClientStatusRequestDataAssetStatus
impl PartialEq for LobbyUpdateClientStatusRequestDataAssetStatus
Source§fn eq(&self, other: &LobbyUpdateClientStatusRequestDataAssetStatus) -> bool
fn eq(&self, other: &LobbyUpdateClientStatusRequestDataAssetStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LobbyUpdateClientStatusRequestDataAssetStatus
impl PartialOrd for LobbyUpdateClientStatusRequestDataAssetStatus
Source§impl TryFrom<&String> for LobbyUpdateClientStatusRequestDataAssetStatus
impl TryFrom<&String> for LobbyUpdateClientStatusRequestDataAssetStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for LobbyUpdateClientStatusRequestDataAssetStatus
impl TryFrom<&str> for LobbyUpdateClientStatusRequestDataAssetStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for LobbyUpdateClientStatusRequestDataAssetStatus
impl TryFrom<String> for LobbyUpdateClientStatusRequestDataAssetStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for LobbyUpdateClientStatusRequestDataAssetStatus
impl Eq for LobbyUpdateClientStatusRequestDataAssetStatus
impl StructuralPartialEq for LobbyUpdateClientStatusRequestDataAssetStatus
Auto Trait Implementations§
impl Freeze for LobbyUpdateClientStatusRequestDataAssetStatus
impl RefUnwindSafe for LobbyUpdateClientStatusRequestDataAssetStatus
impl Send for LobbyUpdateClientStatusRequestDataAssetStatus
impl Sync for LobbyUpdateClientStatusRequestDataAssetStatus
impl Unpin for LobbyUpdateClientStatusRequestDataAssetStatus
impl UnsafeUnpin for LobbyUpdateClientStatusRequestDataAssetStatus
impl UnwindSafe for LobbyUpdateClientStatusRequestDataAssetStatus
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