pub struct StatisticListResponse {
pub code: Option<i64>,
pub msg: Option<String>,
pub data: Option<Box<StatisticListResponseData>>,
}Fields§
§code: Option<i64>§msg: Option<String>§data: Option<Box<StatisticListResponseData>>Implementations§
Source§impl StatisticListResponse
impl StatisticListResponse
pub fn new() -> StatisticListResponse
Trait Implementations§
Source§impl Clone for StatisticListResponse
impl Clone for StatisticListResponse
Source§fn clone(&self) -> StatisticListResponse
fn clone(&self) -> StatisticListResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StatisticListResponse
impl Debug for StatisticListResponse
Source§impl Default for StatisticListResponse
impl Default for StatisticListResponse
Source§fn default() -> StatisticListResponse
fn default() -> StatisticListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatisticListResponse
impl<'de> Deserialize<'de> for StatisticListResponse
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 PartialEq for StatisticListResponse
impl PartialEq for StatisticListResponse
Source§fn eq(&self, other: &StatisticListResponse) -> bool
fn eq(&self, other: &StatisticListResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StatisticListResponse
impl Serialize for StatisticListResponse
impl StructuralPartialEq for StatisticListResponse
Auto Trait Implementations§
impl Freeze for StatisticListResponse
impl RefUnwindSafe for StatisticListResponse
impl Send for StatisticListResponse
impl Sync for StatisticListResponse
impl Unpin for StatisticListResponse
impl UnsafeUnpin for StatisticListResponse
impl UnwindSafe for StatisticListResponse
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