pub enum EventNotesItemPitchStep {
A,
B,
C,
D,
E,
F,
G,
}Expand description
EventNotesItemPitchStep
JSON schema
{
"type": "string",
"enum": [
"A",
"B",
"C",
"D",
"E",
"F",
"G"
]
}Variants§
Trait Implementations§
Source§impl Clone for EventNotesItemPitchStep
impl Clone for EventNotesItemPitchStep
Source§fn clone(&self) -> EventNotesItemPitchStep
fn clone(&self) -> EventNotesItemPitchStep
Returns a duplicate 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 EventNotesItemPitchStep
impl Debug for EventNotesItemPitchStep
Source§impl<'de> Deserialize<'de> for EventNotesItemPitchStep
impl<'de> Deserialize<'de> for EventNotesItemPitchStep
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 EventNotesItemPitchStep
impl Display for EventNotesItemPitchStep
Source§impl From<&EventNotesItemPitchStep> for EventNotesItemPitchStep
impl From<&EventNotesItemPitchStep> for EventNotesItemPitchStep
Source§fn from(value: &EventNotesItemPitchStep) -> Self
fn from(value: &EventNotesItemPitchStep) -> Self
Converts to this type from the input type.
Source§impl FromStr for EventNotesItemPitchStep
impl FromStr for EventNotesItemPitchStep
Source§impl Hash for EventNotesItemPitchStep
impl Hash for EventNotesItemPitchStep
Source§impl Ord for EventNotesItemPitchStep
impl Ord for EventNotesItemPitchStep
Source§fn cmp(&self, other: &EventNotesItemPitchStep) -> Ordering
fn cmp(&self, other: &EventNotesItemPitchStep) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EventNotesItemPitchStep
impl PartialEq for EventNotesItemPitchStep
Source§impl PartialOrd for EventNotesItemPitchStep
impl PartialOrd for EventNotesItemPitchStep
Source§impl Serialize for EventNotesItemPitchStep
impl Serialize for EventNotesItemPitchStep
Source§impl TryFrom<&String> for EventNotesItemPitchStep
impl TryFrom<&String> for EventNotesItemPitchStep
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EventNotesItemPitchStep
impl TryFrom<&str> for EventNotesItemPitchStep
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EventNotesItemPitchStep
impl TryFrom<String> for EventNotesItemPitchStep
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for EventNotesItemPitchStep
impl Eq for EventNotesItemPitchStep
impl StructuralPartialEq for EventNotesItemPitchStep
Auto Trait Implementations§
impl Freeze for EventNotesItemPitchStep
impl RefUnwindSafe for EventNotesItemPitchStep
impl Send for EventNotesItemPitchStep
impl Sync for EventNotesItemPitchStep
impl Unpin for EventNotesItemPitchStep
impl UnwindSafe for EventNotesItemPitchStep
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