pub struct Stats {
pub total: usize,
pub solved: usize,
pub unsolved: usize,
pub claimed: usize,
pub swept: usize,
pub with_pubkey: usize,
pub total_prize: HashMap<Chain, f64>,
pub unsolved_prize: HashMap<Chain, f64>,
}Fields§
§total: usize§solved: usize§unsolved: usize§claimed: usize§swept: usize§with_pubkey: usize§total_prize: HashMap<Chain, f64>§unsolved_prize: HashMap<Chain, f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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