pub struct PoolHistoryInner {
pub epoch: i32,
pub blocks: i32,
pub active_stake: String,
pub active_size: f32,
pub delegators_count: i32,
pub rewards: String,
pub fees: String,
}Fields§
§epoch: i32Epoch number
blocks: i32Number of blocks created by pool
active_stake: StringActive (Snapshot of live stake 2 epochs ago) stake in Lovelaces
active_size: f32Pool size (percentage) of overall active stake at that epoch
delegators_count: i32Number of delegators for epoch
rewards: StringTotal rewards received before distribution to delegators
fees: StringPool operator rewards
Implementations§
Trait Implementations§
source§impl Clone for PoolHistoryInner
impl Clone for PoolHistoryInner
source§fn clone(&self) -> PoolHistoryInner
fn clone(&self) -> PoolHistoryInner
Returns a copy 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 PoolHistoryInner
impl Debug for PoolHistoryInner
source§impl Default for PoolHistoryInner
impl Default for PoolHistoryInner
source§fn default() -> PoolHistoryInner
fn default() -> PoolHistoryInner
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PoolHistoryInner
impl<'de> Deserialize<'de> for PoolHistoryInner
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 PoolHistoryInner
impl PartialEq for PoolHistoryInner
source§fn eq(&self, other: &PoolHistoryInner) -> bool
fn eq(&self, other: &PoolHistoryInner) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for PoolHistoryInner
impl Serialize for PoolHistoryInner
impl StructuralPartialEq for PoolHistoryInner
Auto Trait Implementations§
impl RefUnwindSafe for PoolHistoryInner
impl Send for PoolHistoryInner
impl Sync for PoolHistoryInner
impl Unpin for PoolHistoryInner
impl UnwindSafe for PoolHistoryInner
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