pub enum ParameterInformationLabel {
String(String),
Tuple((u32, u32)),
}Variants§
Trait Implementations§
Source§impl Clone for ParameterInformationLabel
impl Clone for ParameterInformationLabel
Source§fn clone(&self) -> ParameterInformationLabel
fn clone(&self) -> ParameterInformationLabel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParameterInformationLabel
impl Debug for ParameterInformationLabel
Source§impl<'de> Deserialize<'de> for ParameterInformationLabel
impl<'de> Deserialize<'de> for ParameterInformationLabel
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 From<&str> for ParameterInformationLabel
impl From<&str> for ParameterInformationLabel
Source§impl From<String> for ParameterInformationLabel
impl From<String> for ParameterInformationLabel
Source§impl From<char> for ParameterInformationLabel
impl From<char> for ParameterInformationLabel
Source§impl Hash for ParameterInformationLabel
impl Hash for ParameterInformationLabel
Source§impl PartialEq for ParameterInformationLabel
impl PartialEq for ParameterInformationLabel
Source§fn eq(&self, other: &ParameterInformationLabel) -> bool
fn eq(&self, other: &ParameterInformationLabel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParameterInformationLabel
impl StructuralPartialEq for ParameterInformationLabel
Auto Trait Implementations§
impl Freeze for ParameterInformationLabel
impl RefUnwindSafe for ParameterInformationLabel
impl Send for ParameterInformationLabel
impl Sync for ParameterInformationLabel
impl Unpin for ParameterInformationLabel
impl UnsafeUnpin for ParameterInformationLabel
impl UnwindSafe for ParameterInformationLabel
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