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