pub struct OreRoundState {
pub expires_at: Option<Option<i64>>,
pub estimated_expires_at_unix: Option<Option<i64>>,
pub motherlode: Option<Option<f64>>,
pub total_deployed: Option<Option<f64>>,
pub total_vaulted: Option<Option<f64>>,
pub total_winnings: Option<Option<f64>>,
pub total_miners: Option<Option<u64>>,
pub deployed_per_square: Option<Option<Vec<Value>>>,
pub deployed_per_square_ui: Option<Option<Vec<Value>>>,
pub count_per_square: Option<Option<Vec<Value>>>,
}Fields§
§expires_at: Option<Option<i64>>§estimated_expires_at_unix: Option<Option<i64>>§motherlode: Option<Option<f64>>§total_deployed: Option<Option<f64>>§total_vaulted: Option<Option<f64>>§total_winnings: Option<Option<f64>>§total_miners: Option<Option<u64>>§deployed_per_square: Option<Option<Vec<Value>>>§deployed_per_square_ui: Option<Option<Vec<Value>>>§count_per_square: Option<Option<Vec<Value>>>Trait Implementations§
Source§impl Clone for OreRoundState
impl Clone for OreRoundState
Source§fn clone(&self) -> OreRoundState
fn clone(&self) -> OreRoundState
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 OreRoundState
impl Debug for OreRoundState
Source§impl Default for OreRoundState
impl Default for OreRoundState
Source§fn default() -> OreRoundState
fn default() -> OreRoundState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OreRoundState
impl<'de> Deserialize<'de> for OreRoundState
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 OreRoundState
impl RefUnwindSafe for OreRoundState
impl Send for OreRoundState
impl Sync for OreRoundState
impl Unpin for OreRoundState
impl UnsafeUnpin for OreRoundState
impl UnwindSafe for OreRoundState
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