[][src]Struct mangadex_fs::api::chapter::Chapter

pub struct Chapter {
    pub id: u64,
    pub timestamp: u64,
    pub hash: String,
    pub volume: String,
    pub chapter: String,
    pub title: String,
    pub lang_name: String,
    pub lang_code: String,
    pub manga_id: u64,
    pub group_id: u64,
    pub group_name: Option<String>,
    pub group_id_2: u64,
    pub group_name_2: Option<String>,
    pub group_id_3: u64,
    pub group_name_3: Option<String>,
    pub comments: Option<u64>,
    pub server: String,
    pub page_array: Vec<String>,
    pub long_strip: bool,
    pub external: Option<String>,
}

Fields

id: u64timestamp: u64hash: Stringvolume: Stringchapter: Stringtitle: Stringlang_name: Stringlang_code: Stringmanga_id: u64group_id: u64group_name: Option<String>group_id_2: u64group_name_2: Option<String>group_id_3: u64group_name_3: Option<String>comments: Option<u64>server: Stringpage_array: Vec<String>long_strip: boolexternal: Option<String>

Implementations

impl Chapter[src]

pub async fn get<'_>(client: &'_ Client, id: u64) -> Result<Chapter, Error>[src]

Trait Implementations

impl Debug for Chapter[src]

impl<'de> Deserialize<'de> 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: 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> Sealed<T> for T where
    T: ?Sized

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.