pub struct BatchList {
pub total_count: i32,
pub item_count: i32,
pub item: Vec<NewsItem>,
}
Fields§
§total_count: i32
§item_count: i32
§item: Vec<NewsItem>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BatchList
impl<'de> Deserialize<'de> for BatchList
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
Auto Trait Implementations§
impl Freeze for BatchList
impl RefUnwindSafe for BatchList
impl Send for BatchList
impl Sync for BatchList
impl Unpin for BatchList
impl UnwindSafe for BatchList
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