pub struct TitleList {
pub listName: String,
pub featured_titles: Vec<Title>,
}
Fields§
§listName: String
§featured_titles: Vec<Title>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TitleList
impl<'de> Deserialize<'de> for TitleList
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 TitleList
impl<'a> MessageRead<'a> for TitleList
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 TitleList
impl MessageWrite for TitleList
impl StructuralPartialEq for TitleList
Auto Trait Implementations§
impl Freeze for TitleList
impl RefUnwindSafe for TitleList
impl Send for TitleList
impl Sync for TitleList
impl Unpin for TitleList
impl UnwindSafe for TitleList
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