[][src]Struct ganganonline_parser_lib::reader::Title

pub struct Title<'a> {
    pub id: u32,
    pub type_pb: Type,
    pub title_name: Cow<'a, str>,
    pub title_name_kana: Cow<'a, str>,
    pub author_name: Cow<'a, str>,
    pub single_list_thumbnail_url: Cow<'a, str>,
    pub spread_list_thumbnail_url: Cow<'a, str>,
    pub short_description: Cow<'a, str>,
    pub number_of_bookmarks: u32,
    pub badge: Badge,
    pub remaining_charge_time: u32,
    pub remaining_bonus: u32,
    pub category: Vec<Tag<'a>>,
    pub charge_time: u32,
    pub label: Option<Tag<'a>>,
    pub can_comment: bool,
    pub is_free_title: bool,
}

Fields

id: u32type_pb: Typetitle_name: Cow<'a, str>title_name_kana: Cow<'a, str>author_name: Cow<'a, str>single_list_thumbnail_url: Cow<'a, str>spread_list_thumbnail_url: Cow<'a, str>short_description: Cow<'a, str>number_of_bookmarks: u32badge: Badgeremaining_charge_time: u32remaining_bonus: u32category: Vec<Tag<'a>>charge_time: u32label: Option<Tag<'a>>can_comment: boolis_free_title: bool

Trait Implementations

impl<'a> Clone for Title<'a>[src]

impl<'a> Debug for Title<'a>[src]

impl<'a> Default for Title<'a>[src]

impl<'a> MessageRead<'a> for Title<'a>[src]

impl<'a> MessageWrite for Title<'a>[src]

impl<'a> PartialEq<Title<'a>> for Title<'a>[src]

impl<'a> StructuralPartialEq for Title<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Title<'a>

impl<'a> Send for Title<'a>

impl<'a> Sync for Title<'a>

impl<'a> Unpin for Title<'a>

impl<'a> UnwindSafe for Title<'a>

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> 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.