pub struct TitleDetailView<'a> {Show 18 fields
pub title: Option<Title<'a>>,
pub title_image_url: Cow<'a, str>,
pub overview: Cow<'a, str>,
pub background_image_url: Cow<'a, str>,
pub next_time_stamp: u32,
pub update_timing: UpdateTiming,
pub viewing_period_description: Cow<'a, str>,
pub non_appearance_info: Cow<'a, str>,
pub first_chapter_list: Vec<Chapter<'a>>,
pub last_chapter_list: Vec<Chapter<'a>>,
pub banners: Vec<Banner<'a>>,
pub recommended_title_list: Vec<Title<'a>>,
pub sns: Option<Sns<'a>>,
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<'a>>§title_image_url: Cow<'a, str>§overview: Cow<'a, str>§background_image_url: Cow<'a, str>§next_time_stamp: u32§update_timing: UpdateTiming§viewing_period_description: Cow<'a, str>§non_appearance_info: Cow<'a, str>§first_chapter_list: Vec<Chapter<'a>>§last_chapter_list: Vec<Chapter<'a>>§recommended_title_list: Vec<Title<'a>>§sns: Option<Sns<'a>>§is_simul_released: bool§is_subscribed: bool§rating: Rating§chapters_descending: bool§number_of_views: u32Trait Implementations§
Source§impl<'a> Clone for TitleDetailView<'a>
impl<'a> Clone for TitleDetailView<'a>
Source§fn clone(&self) -> TitleDetailView<'a>
fn clone(&self) -> TitleDetailView<'a>
Returns a duplicate 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<'a> Debug for TitleDetailView<'a>
impl<'a> Debug for TitleDetailView<'a>
Source§impl<'a> Default for TitleDetailView<'a>
impl<'a> Default for TitleDetailView<'a>
Source§fn default() -> TitleDetailView<'a>
fn default() -> TitleDetailView<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for TitleDetailView<'a>
impl<'a> MessageRead<'a> for TitleDetailView<'a>
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<'a> MessageWrite for TitleDetailView<'a>
impl<'a> MessageWrite for TitleDetailView<'a>
Source§impl<'a> PartialEq for TitleDetailView<'a>
impl<'a> PartialEq for TitleDetailView<'a>
impl<'a> StructuralPartialEq for TitleDetailView<'a>
Auto Trait Implementations§
impl<'a> Freeze for TitleDetailView<'a>
impl<'a> RefUnwindSafe for TitleDetailView<'a>
impl<'a> Send for TitleDetailView<'a>
impl<'a> Sync for TitleDetailView<'a>
impl<'a> Unpin for TitleDetailView<'a>
impl<'a> UnwindSafe for TitleDetailView<'a>
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