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