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