Struct id3::frame::Lyrics[][src]

pub struct Lyrics {
    pub lang: String,
    pub description: String,
    pub text: String,
}

The parsed contents of an unsynchronized lyrics frame.

Fields

lang: Stringdescription: Stringtext: String

Trait Implementations

impl Clone for Lyrics[src]

impl Debug for Lyrics[src]

impl Display for Lyrics[src]

impl Eq for Lyrics[src]

impl Hash for Lyrics[src]

impl PartialEq<Lyrics> for Lyrics[src]

impl StructuralEq for Lyrics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.