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