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