[][src]Struct serde_mangadex::manga_api::Chapter

pub struct Chapter {
    pub volume: String,
    pub chapter: String,
    pub title: String,
    pub lang: Language,
    pub group_id: u32,
    pub group_id_2: u32,
    pub group_id_3: u32,
    pub group_name: String,
    pub group_name_2: Option<String>,
    pub group_name_3: Option<String>,
    pub timestamp: u64,
}

Chapter information from the information from the mangadex manga api (/api/manga/47; .chapter[])

Fields

volume: Stringchapter: Stringtitle: Stringlang: Languagegroup_id: u32group_id_2: u32group_id_3: u32group_name: Stringgroup_name_2: Option<String>group_name_3: Option<String>timestamp: u64

Trait Implementations

impl Clone for Chapter[src]

impl Debug for Chapter[src]

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

impl PartialEq<Chapter> for Chapter[src]

impl StructuralPartialEq for Chapter[src]

Auto Trait Implementations

impl RefUnwindSafe for Chapter

impl Send for Chapter

impl Sync for Chapter

impl Unpin for Chapter

impl UnwindSafe for Chapter

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.