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