[][src]Struct anitable::AnimeData

pub struct AnimeData {
    pub alive: bool,
    pub end_date: Option<NaiveDate>,
    pub genre: String,
    pub id: i32,
    pub link: String,
    pub subject: String,
    pub start_date: Option<NaiveDate>,
    pub time: String,
}

애니메이션 정보를 담는 자료형

Fields

alive: bool

방영중 여부

end_date: Option<NaiveDate>

종영일

genre: String

장르

id: i32

고유번호

link: String

공식 홈페이지 링크

subject: String

제목

start_date: Option<NaiveDate>

방영 시작일

time: String

방영시각

Trait Implementations

impl Debug for AnimeData[src]

impl<'de> Deserialize<'de> for AnimeData[src]

impl Serialize for AnimeData[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

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

type Error = !

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.