pub struct MangaViewer<'a> {
pub pages: Vec<Page<'a>>,
pub chapter_id: u32,
pub chapters: Vec<Chapter<'a>>,
pub sns: Option<Sns<'a>>,
pub title_name: Cow<'a, str>,
pub chapter_name: Cow<'a, str>,
pub number_of_comments: i32,
pub is_vertical_only: bool,
pub title_id: u32,
pub start_from_right: bool,
}Fields§
§pages: Vec<Page<'a>>§chapter_id: u32§chapters: Vec<Chapter<'a>>§sns: Option<Sns<'a>>§title_name: Cow<'a, str>§chapter_name: Cow<'a, str>§number_of_comments: i32§is_vertical_only: bool§title_id: u32§start_from_right: boolTrait Implementations§
Source§impl<'a> Clone for MangaViewer<'a>
impl<'a> Clone for MangaViewer<'a>
Source§fn clone(&self) -> MangaViewer<'a>
fn clone(&self) -> MangaViewer<'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 MangaViewer<'a>
impl<'a> Debug for MangaViewer<'a>
Source§impl<'a> Default for MangaViewer<'a>
impl<'a> Default for MangaViewer<'a>
Source§fn default() -> MangaViewer<'a>
fn default() -> MangaViewer<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for MangaViewer<'a>
impl<'a> MessageRead<'a> for MangaViewer<'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 MangaViewer<'a>
impl<'a> MessageWrite for MangaViewer<'a>
Source§impl<'a> PartialEq for MangaViewer<'a>
impl<'a> PartialEq for MangaViewer<'a>
impl<'a> StructuralPartialEq for MangaViewer<'a>
Auto Trait Implementations§
impl<'a> Freeze for MangaViewer<'a>
impl<'a> RefUnwindSafe for MangaViewer<'a>
impl<'a> Send for MangaViewer<'a>
impl<'a> Sync for MangaViewer<'a>
impl<'a> Unpin for MangaViewer<'a>
impl<'a> UnwindSafe for MangaViewer<'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