pub enum EventLyricsLinesValueType {
Start,
Middle,
End,
Whole,
}Expand description
EventLyricsLinesValueType
JSON schema
{
"type": "string",
"enum": [
"start",
"middle",
"end",
"whole"
]
}Variants§
Trait Implementations§
Source§impl Clone for EventLyricsLinesValueType
impl Clone for EventLyricsLinesValueType
Source§fn clone(&self) -> EventLyricsLinesValueType
fn clone(&self) -> EventLyricsLinesValueType
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 EventLyricsLinesValueType
impl Debug for EventLyricsLinesValueType
Source§impl<'de> Deserialize<'de> for EventLyricsLinesValueType
impl<'de> Deserialize<'de> for EventLyricsLinesValueType
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 EventLyricsLinesValueType
impl Display for EventLyricsLinesValueType
Source§impl From<&EventLyricsLinesValueType> for EventLyricsLinesValueType
impl From<&EventLyricsLinesValueType> for EventLyricsLinesValueType
Source§fn from(value: &EventLyricsLinesValueType) -> Self
fn from(value: &EventLyricsLinesValueType) -> Self
Converts to this type from the input type.
Source§impl FromStr for EventLyricsLinesValueType
impl FromStr for EventLyricsLinesValueType
Source§impl Hash for EventLyricsLinesValueType
impl Hash for EventLyricsLinesValueType
Source§impl Ord for EventLyricsLinesValueType
impl Ord for EventLyricsLinesValueType
Source§fn cmp(&self, other: &EventLyricsLinesValueType) -> Ordering
fn cmp(&self, other: &EventLyricsLinesValueType) -> 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 PartialOrd for EventLyricsLinesValueType
impl PartialOrd for EventLyricsLinesValueType
Source§impl TryFrom<&String> for EventLyricsLinesValueType
impl TryFrom<&String> for EventLyricsLinesValueType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EventLyricsLinesValueType
impl TryFrom<&str> for EventLyricsLinesValueType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EventLyricsLinesValueType
impl TryFrom<String> for EventLyricsLinesValueType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for EventLyricsLinesValueType
impl Eq for EventLyricsLinesValueType
impl StructuralPartialEq for EventLyricsLinesValueType
Auto Trait Implementations§
impl Freeze for EventLyricsLinesValueType
impl RefUnwindSafe for EventLyricsLinesValueType
impl Send for EventLyricsLinesValueType
impl Sync for EventLyricsLinesValueType
impl Unpin for EventLyricsLinesValueType
impl UnwindSafe for EventLyricsLinesValueType
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