Struct mangadex_api::v2::responses::user_followed_updates::UserFollowedUpdatesMangaData[][src]

pub struct UserFollowedUpdatesMangaData {
    id: MangaId,
    title: String,
    is_hentai: bool,
    last_chapter: Option<String>,
    last_volume: Option<String>,
    main_cover_url: String,
}

Fields

id: MangaIdtitle: Stringis_hentai: boollast_chapter: Option<String>last_volume: Option<String>main_cover_url: String

Implementations

impl UserFollowedUpdatesMangaData[src]

pub fn id(&self) -> &MangaId[src]

pub fn name(&self) -> &String[src]

Alias for title().

Kept for compatibility even though MangaDex is deprecating the use of the “name” field in their API.

pub fn title(&self) -> &String[src]

pub fn is_hentai(&self) -> &bool[src]

pub fn last_chapter(&self) -> &Option<String>[src]

pub fn last_volume(&self) -> &Option<String>[src]

pub fn main_cover_url(&self) -> &String[src]

Trait Implementations

impl Clone for UserFollowedUpdatesMangaData[src]

impl Debug for UserFollowedUpdatesMangaData[src]

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

impl PartialEq<UserFollowedUpdatesMangaData> for UserFollowedUpdatesMangaData[src]

impl StructuralPartialEq for UserFollowedUpdatesMangaData[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.