pub enum RacingSelectionName {
Variant(RacingSelectionNameVariant),
String(String),
}
Variants§
Variant(RacingSelectionNameVariant)
String(String)
Trait Implementations§
Source§impl Clone for RacingSelectionName
impl Clone for RacingSelectionName
Source§fn clone(&self) -> RacingSelectionName
fn clone(&self) -> RacingSelectionName
Returns a copy 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 RacingSelectionName
impl Debug for RacingSelectionName
Source§impl<'de> Deserialize<'de> for RacingSelectionName
impl<'de> Deserialize<'de> for RacingSelectionName
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 Display for RacingSelectionName
impl Display for RacingSelectionName
Source§impl From<RacingSelectionNameVariant> for RacingSelectionName
impl From<RacingSelectionNameVariant> for RacingSelectionName
Source§fn from(value: RacingSelectionNameVariant) -> Self
fn from(value: RacingSelectionNameVariant) -> Self
Converts to this type from the input type.
Source§impl From<String> for RacingSelectionName
impl From<String> for RacingSelectionName
Source§impl Hash for RacingSelectionName
impl Hash for RacingSelectionName
Source§impl PartialEq for RacingSelectionName
impl PartialEq for RacingSelectionName
impl Eq for RacingSelectionName
impl StructuralPartialEq for RacingSelectionName
Auto Trait Implementations§
impl Freeze for RacingSelectionName
impl RefUnwindSafe for RacingSelectionName
impl Send for RacingSelectionName
impl Sync for RacingSelectionName
impl Unpin for RacingSelectionName
impl UnwindSafe for RacingSelectionName
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