Struct forest_actor::miner::ExpirationSet[][src]

pub struct ExpirationSet {
    pub on_time_sectors: BitField,
    pub early_sectors: BitField,
    pub on_time_pledge: TokenAmount,
    pub active_power: PowerPair,
    pub faulty_power: PowerPair,
}

ExpirationSet is a collection of sector numbers that are expiring, either due to expected “on-time” expiration at the end of their life, or unexpected “early” termination due to being faulty for too long consecutively. Note that there is not a direct correspondence between on-time sectors and active power; a sector may be faulty but expiring on-time if it faults just prior to expected termination. Early sectors are always faulty, and active power always represents on-time sectors.

Fields

on_time_sectors: BitField

Sectors expiring “on time” at the end of their committed life

early_sectors: BitField

Sectors expiring “early” due to being faulty for too long

on_time_pledge: TokenAmount

Pledge total for the on-time sectors

active_power: PowerPair

Power that is currently active (not faulty)

faulty_power: PowerPair

Power that is currently faulty

Implementations

impl ExpirationSet[src]

pub fn empty() -> Self[src]

pub fn add(
    &mut self,
    on_time_sectors: &BitField,
    early_sectors: &BitField,
    on_time_pledge: &TokenAmount,
    active_power: &PowerPair,
    faulty_power: &PowerPair
)
[src]

Adds sectors and power to the expiration set in place.

pub fn remove(
    &mut self,
    on_time_sectors: &BitField,
    early_sectors: &BitField,
    on_time_pledge: &TokenAmount,
    active_power: &PowerPair,
    faulty_power: &PowerPair
) -> Result<(), Box<dyn StdError>>
[src]

Removes sectors and power from the expiration set in place.

pub fn is_empty(&self) -> bool[src]

A set is empty if it has no sectors. The power and pledge are not checked, but are expected to be zero.

pub fn len(&self) -> usize[src]

Counts all sectors in the expiration set.

Trait Implementations

impl Clone for ExpirationSet[src]

impl Debug for ExpirationSet[src]

impl Default for ExpirationSet[src]

impl<'de> Deserialize<'de> for ExpirationSet[src]

impl Serialize for ExpirationSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,