pub struct MangaPage {
pub image_url: String,
pub width: u32,
pub height: u32,
pub type_pb: PageType,
pub encryption_key: String,
}
Fields§
§image_url: String
§width: u32
§height: u32
§type_pb: PageType
§encryption_key: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MangaPage
impl<'de> Deserialize<'de> for MangaPage
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 MangaPage
impl<'a> MessageRead<'a> for MangaPage
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 MangaPage
impl MessageWrite for MangaPage
impl StructuralPartialEq for MangaPage
Auto Trait Implementations§
impl Freeze for MangaPage
impl RefUnwindSafe for MangaPage
impl Send for MangaPage
impl Sync for MangaPage
impl Unpin for MangaPage
impl UnwindSafe for MangaPage
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