pub struct MnxDocumentGlobalLyrics {
pub line_metadata: HashMap<MnxDocumentGlobalLyricsLineMetadataKey, MnxDocumentGlobalLyricsLineMetadataValue>,
pub line_order: Vec<String>,
}Expand description
MnxDocumentGlobalLyrics
JSON schema
{
"type": "object",
"properties": {
"lineMetadata": {
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"lang": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"lineOrder": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}Fields§
§line_metadata: HashMap<MnxDocumentGlobalLyricsLineMetadataKey, MnxDocumentGlobalLyricsLineMetadataValue>§line_order: Vec<String>Implementations§
Source§impl MnxDocumentGlobalLyrics
impl MnxDocumentGlobalLyrics
pub fn builder() -> MnxDocumentGlobalLyrics
Trait Implementations§
Source§impl Clone for MnxDocumentGlobalLyrics
impl Clone for MnxDocumentGlobalLyrics
Source§fn clone(&self) -> MnxDocumentGlobalLyrics
fn clone(&self) -> MnxDocumentGlobalLyrics
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 MnxDocumentGlobalLyrics
impl Debug for MnxDocumentGlobalLyrics
Source§impl Default for MnxDocumentGlobalLyrics
impl Default for MnxDocumentGlobalLyrics
Source§impl<'de> Deserialize<'de> for MnxDocumentGlobalLyrics
impl<'de> Deserialize<'de> for MnxDocumentGlobalLyrics
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<&MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
impl From<&MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
Source§fn from(value: &MnxDocumentGlobalLyrics) -> Self
fn from(value: &MnxDocumentGlobalLyrics) -> Self
Converts to this type from the input type.
Source§impl From<MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
impl From<MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
Source§fn from(value: MnxDocumentGlobalLyrics) -> Self
fn from(value: MnxDocumentGlobalLyrics) -> Self
Converts to this type from the input type.
Source§impl Serialize for MnxDocumentGlobalLyrics
impl Serialize for MnxDocumentGlobalLyrics
Source§impl TryFrom<MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
impl TryFrom<MnxDocumentGlobalLyrics> for MnxDocumentGlobalLyrics
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MnxDocumentGlobalLyrics) -> Result<Self, ConversionError>
fn try_from(value: MnxDocumentGlobalLyrics) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MnxDocumentGlobalLyrics
impl RefUnwindSafe for MnxDocumentGlobalLyrics
impl Send for MnxDocumentGlobalLyrics
impl Sync for MnxDocumentGlobalLyrics
impl Unpin for MnxDocumentGlobalLyrics
impl UnwindSafe for MnxDocumentGlobalLyrics
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