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