Struct forest_actor::miner::SectorOnChainInfo[][src]

pub struct SectorOnChainInfo {
    pub sector_number: SectorNumber,
    pub seal_proof: RegisteredSealProof,
    pub sealed_cid: Cid,
    pub deal_ids: Vec<DealID>,
    pub activation: ChainEpoch,
    pub expiration: ChainEpoch,
    pub deal_weight: DealWeight,
    pub verified_deal_weight: DealWeight,
    pub initial_pledge: TokenAmount,
    pub expected_day_reward: TokenAmount,
    pub expected_storage_pledge: TokenAmount,
}

Information stored on-chain for a proven sector.

Fields

sector_number: SectorNumberseal_proof: RegisteredSealProof

The seal proof type implies the PoSt proofs

sealed_cid: Cid

CommR

deal_ids: Vec<DealID>activation: ChainEpoch

Epoch during which the sector proof was accepted

expiration: ChainEpoch

Epoch during which the sector expires

deal_weight: DealWeight

Integral of active deals over sector lifetime

verified_deal_weight: DealWeight

Integral of active verified deals over sector lifetime

initial_pledge: TokenAmount

Pledge collected to commit this sector

expected_day_reward: TokenAmount

Expected one day projection of reward for sector computed at activation time

expected_storage_pledge: TokenAmount

Expected twenty day projection of reward for sector computed at activation time

Trait Implementations

impl Clone for SectorOnChainInfo[src]

impl Debug for SectorOnChainInfo[src]

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

impl PartialEq<SectorOnChainInfo> for SectorOnChainInfo[src]

impl Serialize for SectorOnChainInfo[src]

impl StructuralPartialEq for SectorOnChainInfo[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>,