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