pub struct MineStatsResponse {
pub total_proofs: u64,
pub total_rewards: String,
pub unique_miners: u64,
pub avg_difficulty: u32,
}Fields§
§total_proofs: u64§total_rewards: String§unique_miners: u64§avg_difficulty: u32Trait Implementations§
Source§impl Clone for MineStatsResponse
impl Clone for MineStatsResponse
Source§fn clone(&self) -> MineStatsResponse
fn clone(&self) -> MineStatsResponse
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 MineStatsResponse
impl Debug for MineStatsResponse
Source§impl<'de> Deserialize<'de> for MineStatsResponse
impl<'de> Deserialize<'de> for MineStatsResponse
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 MineStatsResponse
impl RefUnwindSafe for MineStatsResponse
impl Send for MineStatsResponse
impl Sync for MineStatsResponse
impl Unpin for MineStatsResponse
impl UnsafeUnpin for MineStatsResponse
impl UnwindSafe for MineStatsResponse
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