pub struct SyncedLyrics {
pub language: Option<String>,
pub content_type: SyncedLyricsContentType,
pub description: Option<String>,
pub lines: Vec<SyncedLyricsLine>,
}Expand description
Synchronized lyrics/text (SYLT): flo first-party support!
Fields§
§language: Option<String>ISO-639-2 language code
content_type: SyncedLyricsContentTypeContent type
description: Option<String>Content description
lines: Vec<SyncedLyricsLine>Lines with timestamps
Trait Implementations§
Source§impl Clone for SyncedLyrics
impl Clone for SyncedLyrics
Source§fn clone(&self) -> SyncedLyrics
fn clone(&self) -> SyncedLyrics
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 SyncedLyrics
impl Debug for SyncedLyrics
Source§impl<'de> Deserialize<'de> for SyncedLyrics
impl<'de> Deserialize<'de> for SyncedLyrics
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
Auto Trait Implementations§
impl Freeze for SyncedLyrics
impl RefUnwindSafe for SyncedLyrics
impl Send for SyncedLyrics
impl Sync for SyncedLyrics
impl Unpin for SyncedLyrics
impl UnwindSafe for SyncedLyrics
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