Struct mangadex_api::v2::responses::partials::UserMangaPartial[][src]

pub struct UserMangaPartial {
    user_id: UserId,
    manga_id: MangaId,
    manga_title: String,
    follow_type: FollowStatus,
    volume: String,
    chapter: String,
    rating: UserRating,
    main_cover_url: String,
}

This struct should not be used directly.

Fields

user_id: UserIdmanga_id: MangaIdmanga_title: Stringfollow_type: FollowStatusvolume: Stringchapter: Stringrating: UserRatingmain_cover_url: String

URL to the main cover image.

Implementations

impl UserMangaPartial[src]

pub fn user_id(&self) -> &UserId[src]

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

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

pub fn follow_type(&self) -> &FollowStatus[src]

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

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

pub fn rating(&self) -> &UserRating[src]

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

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

Alias for main_cover().

Trait Implementations

impl Clone for UserMangaPartial[src]

impl Debug for UserMangaPartial[src]

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

impl PartialEq<UserMangaPartial> for UserMangaPartial[src]

impl PartialOrd<UserMangaPartial> for UserMangaPartial[src]

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