pub enum SuitType {
FlightSuit,
ArtemisSuit,
DominatorSuit,
MaverickSuit,
Unknown(String),
}
Variants§
FlightSuit
ArtemisSuit
DominatorSuit
MaverickSuit
Unknown(String)
Available on crate feature
allow-unknown
only.Trait Implementations§
Source§impl<'de> Deserialize<'de> for SuitType
impl<'de> Deserialize<'de> for SuitType
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
impl StructuralPartialEq for SuitType
Auto Trait Implementations§
impl Freeze for SuitType
impl RefUnwindSafe for SuitType
impl Send for SuitType
impl Sync for SuitType
impl Unpin for SuitType
impl UnwindSafe for SuitType
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