[][src]Struct vndb_rs::common::get::vn::Anime

pub struct Anime {
    pub id: usize,
    pub ann_id: Option<usize>,
    pub nfo_id: Option<String>,
    pub title_romaji: Option<String>,
    pub title_kanji: Option<String>,
    pub year: Option<usize>,
    pub typ: Option<String>,
}

Anime related to the VN,

Fields

id: usizeann_id: Option<usize>nfo_id: Option<String>title_romaji: Option<String>title_kanji: Option<String>year: Option<usize>typ: Option<String>

Trait Implementations

impl Debug for Anime[src]

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

impl PartialEq<Anime> for Anime[src]

impl StructuralPartialEq for Anime[src]

Auto Trait Implementations

impl RefUnwindSafe for Anime

impl Send for Anime

impl Sync for Anime

impl Unpin for Anime

impl UnwindSafe for Anime

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: for<'de> 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 = 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.