pub struct UpdatedTitle {
pub title: Option<Title>,
pub chapter_id: u32,
pub chapter_name: String,
pub chapter_sub_title: String,
pub is_latest: bool,
pub is_vertical_only: bool,
}
Fields§
§title: Option<Title>
§chapter_id: u32
§chapter_name: String
§chapter_sub_title: String
§is_latest: bool
§is_vertical_only: bool
Trait Implementations§
Source§impl Clone for UpdatedTitle
impl Clone for UpdatedTitle
Source§fn clone(&self) -> UpdatedTitle
fn clone(&self) -> UpdatedTitle
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 UpdatedTitle
impl Debug for UpdatedTitle
Source§impl Default for UpdatedTitle
impl Default for UpdatedTitle
Source§fn default() -> UpdatedTitle
fn default() -> UpdatedTitle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatedTitle
impl<'de> Deserialize<'de> for UpdatedTitle
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 UpdatedTitle
impl<'a> MessageRead<'a> for UpdatedTitle
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 UpdatedTitle
impl MessageWrite for UpdatedTitle
Source§impl PartialEq for UpdatedTitle
impl PartialEq for UpdatedTitle
Source§impl Serialize for UpdatedTitle
impl Serialize for UpdatedTitle
impl StructuralPartialEq for UpdatedTitle
Auto Trait Implementations§
impl Freeze for UpdatedTitle
impl RefUnwindSafe for UpdatedTitle
impl Send for UpdatedTitle
impl Sync for UpdatedTitle
impl Unpin for UpdatedTitle
impl UnwindSafe for UpdatedTitle
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