pub enum TornSelectionName {
Variant(TornSelectionNameVariant),
String(String),
}
Variants§
Variant(TornSelectionNameVariant)
String(String)
Trait Implementations§
Source§impl Clone for TornSelectionName
impl Clone for TornSelectionName
Source§fn clone(&self) -> TornSelectionName
fn clone(&self) -> TornSelectionName
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TornSelectionName
impl Debug for TornSelectionName
Source§impl<'de> Deserialize<'de> for TornSelectionName
impl<'de> Deserialize<'de> for TornSelectionName
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 TornSelectionName
impl Display for TornSelectionName
Source§impl From<String> for TornSelectionName
impl From<String> for TornSelectionName
Source§impl From<TornSelectionNameVariant> for TornSelectionName
impl From<TornSelectionNameVariant> for TornSelectionName
Source§fn from(value: TornSelectionNameVariant) -> Self
fn from(value: TornSelectionNameVariant) -> Self
Converts to this type from the input type.
Source§impl Hash for TornSelectionName
impl Hash for TornSelectionName
Source§impl PartialEq for TornSelectionName
impl PartialEq for TornSelectionName
impl Eq for TornSelectionName
impl StructuralPartialEq for TornSelectionName
Auto Trait Implementations§
impl Freeze for TornSelectionName
impl RefUnwindSafe for TornSelectionName
impl Send for TornSelectionName
impl Sync for TornSelectionName
impl Unpin for TornSelectionName
impl UnwindSafe for TornSelectionName
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