UserCommentExt

Trait UserCommentExt 

Source
pub trait UserCommentExt {
    // Required methods
    fn title<S>(value: S) -> Self
       where S: Display;
    fn artist<S>(value: S) -> Self
       where S: Display;
    fn album<S>(value: S) -> Self
       where S: Display;
    fn date<S>(value: S) -> Self
       where S: Display;
    fn track_number<S>(value: S) -> Self
       where S: Display;
    fn track_total<S>(value: S) -> Self
       where S: Display;
    fn disc_number<S>(value: S) -> Self
       where S: Display;
    fn disc_total<S>(value: S) -> Self
       where S: Display;
    fn album_artist<S>(value: S) -> Self
       where S: Display;
}

Required Methods§

Source

fn title<S>(value: S) -> Self
where S: Display,

Source

fn artist<S>(value: S) -> Self
where S: Display,

Source

fn album<S>(value: S) -> Self
where S: Display,

Source

fn date<S>(value: S) -> Self
where S: Display,

Source

fn track_number<S>(value: S) -> Self
where S: Display,

Source

fn track_total<S>(value: S) -> Self
where S: Display,

Source

fn disc_number<S>(value: S) -> Self
where S: Display,

Source

fn disc_total<S>(value: S) -> Self
where S: Display,

Source

fn album_artist<S>(value: S) -> Self
where S: Display,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§