Struct etternaonline_api::v1::SongData[][src]

pub struct SongData {
    pub songkey: String,
    pub id: u32,
    pub name: String,
    pub subtitle: Option<String>,
    pub author: Option<String>,
    pub artist: String,
    pub banner_url: Option<String>,
    pub background_url: Option<String>,
    pub cdtitle: Option<String>,
    pub charts: Vec<SongChartData>,
    pub packs: Vec<String>,
}

Fields

songkey: Stringid: u32name: Stringsubtitle: Option<String>author: Option<String>artist: Stringbanner_url: Option<String>background_url: Option<String>cdtitle: Option<String>charts: Vec<SongChartData>packs: Vec<String>

Trait Implementations

impl Clone for SongData[src]

impl Debug for SongData[src]

impl PartialEq<SongData> for SongData[src]

impl StructuralPartialEq for SongData[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, 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.