pub enum Lyrics {
Synced(Box<SyncedLyrics>),
Unsynced(String),
}Expand description
Lyrics data, can be either synced or unsynced.
Variants§
Synced(Box<SyncedLyrics>)
Synced lyrics parsed from the LRC format.
Unsynced(String)
Unsynced lyrics as a string.
Trait Implementations§
impl Eq for Lyrics
impl StructuralPartialEq for Lyrics
Auto Trait Implementations§
impl Freeze for Lyrics
impl RefUnwindSafe for Lyrics
impl Send for Lyrics
impl Sync for Lyrics
impl Unpin for Lyrics
impl UnsafeUnpin for Lyrics
impl UnwindSafe for Lyrics
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