pub struct PoolHistoryInfo {
pub epoch_no: u64,
pub active_stake: Option<String>,
pub active_stake_pct: Option<f64>,
pub saturation_pct: f64,
pub block_cnt: Option<u64>,
pub delegator_cnt: u64,
pub margin: f64,
pub fixed_cost: String,
pub pool_fees: String,
pub deleg_rewards: String,
pub member_rewards: Option<String>,
pub epoch_ros: f64,
}Fields§
§epoch_no: u64§active_stake: Option<String>§active_stake_pct: Option<f64>§saturation_pct: f64§block_cnt: Option<u64>§delegator_cnt: u64§margin: f64§fixed_cost: String§pool_fees: String§deleg_rewards: String§member_rewards: Option<String>§epoch_ros: f64Implementations§
Trait Implementations§
Source§impl Clone for PoolHistoryInfo
impl Clone for PoolHistoryInfo
Source§fn clone(&self) -> PoolHistoryInfo
fn clone(&self) -> PoolHistoryInfo
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 PoolHistoryInfo
impl Debug for PoolHistoryInfo
Source§impl<'de> Deserialize<'de> for PoolHistoryInfo
impl<'de> Deserialize<'de> for PoolHistoryInfo
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 PoolHistoryInfo
impl RefUnwindSafe for PoolHistoryInfo
impl Send for PoolHistoryInfo
impl Sync for PoolHistoryInfo
impl Unpin for PoolHistoryInfo
impl UnwindSafe for PoolHistoryInfo
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