pub struct TitleDetailView {Show 18 fields
pub title: Option<Title>,
pub title_image_url: String,
pub overview: String,
pub background_image_url: String,
pub next_time_stamp: u32,
pub update_timing: UpdateTiming,
pub viewing_period_description: String,
pub non_appearance_info: String,
pub first_chapter_list: Vec<Chapter>,
pub last_chapter_list: Vec<Chapter>,
pub banners: Vec<Banner>,
pub recommended_title_list: Vec<Title>,
pub sns: Option<Sns>,
pub is_simul_released: bool,
pub is_subscribed: bool,
pub rating: Rating,
pub chapters_descending: bool,
pub number_of_views: u32,
}
Fields§
§title: Option<Title>
§title_image_url: String
§overview: String
§background_image_url: String
§next_time_stamp: u32
§update_timing: UpdateTiming
§viewing_period_description: String
§non_appearance_info: String
§first_chapter_list: Vec<Chapter>
§last_chapter_list: Vec<Chapter>
§recommended_title_list: Vec<Title>
§sns: Option<Sns>
§is_simul_released: bool
§is_subscribed: bool
§rating: Rating
§chapters_descending: bool
§number_of_views: u32
Trait Implementations§
Source§impl Clone for TitleDetailView
impl Clone for TitleDetailView
Source§fn clone(&self) -> TitleDetailView
fn clone(&self) -> TitleDetailView
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TitleDetailView
impl Debug for TitleDetailView
Source§impl Default for TitleDetailView
impl Default for TitleDetailView
Source§fn default() -> TitleDetailView
fn default() -> TitleDetailView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TitleDetailView
impl<'de> Deserialize<'de> for TitleDetailView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> MessageRead<'a> for TitleDetailView
impl<'a> MessageRead<'a> for TitleDetailView
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self
by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for TitleDetailView
impl MessageWrite for TitleDetailView
Source§impl PartialEq for TitleDetailView
impl PartialEq for TitleDetailView
Source§impl Serialize for TitleDetailView
impl Serialize for TitleDetailView
impl StructuralPartialEq for TitleDetailView
Auto Trait Implementations§
impl Freeze for TitleDetailView
impl RefUnwindSafe for TitleDetailView
impl Send for TitleDetailView
impl Sync for TitleDetailView
impl Unpin for TitleDetailView
impl UnwindSafe for TitleDetailView
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more