[][src]Struct serde_mangadex::chapter_api::ChapterBase

pub struct ChapterBase {
    pub id: u32,
    pub timestamp: u64,
    pub manga_id: u32,
    pub volume: String,
    pub chapter: String,
    pub title: String,
    pub lang: Language,
    pub comments: Option<u32>,
}

Information on a manga chapter

Fields

id: u32timestamp: u64manga_id: u32

Parent manga (prefix: https://mangadex.org/api/manga)

volume: Stringchapter: Stringtitle: Stringlang: Languagecomments: Option<u32>

Trait Implementations

impl Clone for ChapterBase[src]

impl Debug for ChapterBase[src]

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

impl PartialEq<ChapterBase> for ChapterBase[src]

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