pub struct ActivityListData {
pub list: Vec<ActivityItem>,
pub num: i32,
pub size: i32,
pub total: i32,
}Expand description
活动列表数据
Fields§
§list: Vec<ActivityItem>活动列表
num: i32当前页码
size: i32每页条数
total: i32总条数
Trait Implementations§
Source§impl Clone for ActivityListData
impl Clone for ActivityListData
Source§fn clone(&self) -> ActivityListData
fn clone(&self) -> ActivityListData
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 Debug for ActivityListData
impl Debug for ActivityListData
Source§impl<'de> Deserialize<'de> for ActivityListData
impl<'de> Deserialize<'de> for ActivityListData
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 ActivityListData
impl RefUnwindSafe for ActivityListData
impl Send for ActivityListData
impl Sync for ActivityListData
impl Unpin for ActivityListData
impl UnwindSafe for ActivityListData
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