Struct forest_actor::miner::SectorPreCommitInfo[][src]

pub struct SectorPreCommitInfo {
    pub seal_proof: RegisteredSealProof,
    pub sector_number: SectorNumber,
    pub sealed_cid: Cid,
    pub seal_rand_epoch: ChainEpoch,
    pub deal_ids: Vec<DealID>,
    pub expiration: ChainEpoch,
    pub replace_capacity: bool,
    pub replace_sector_deadline: usize,
    pub replace_sector_partition: usize,
    pub replace_sector_number: SectorNumber,
}

Fields

seal_proof: RegisteredSealProofsector_number: SectorNumbersealed_cid: Cid

CommR

seal_rand_epoch: ChainEpochdeal_ids: Vec<DealID>expiration: ChainEpochreplace_capacity: bool

Whether to replace a “committed capacity” no-deal sector (requires non-empty DealIDs)

replace_sector_deadline: usize

The committed capacity sector to replace, and its deadline/partition location

replace_sector_partition: usizereplace_sector_number: SectorNumber

Trait Implementations

impl Clone for SectorPreCommitInfo[src]

impl Debug for SectorPreCommitInfo[src]

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

impl PartialEq<SectorPreCommitInfo> for SectorPreCommitInfo[src]

impl Serialize for SectorPreCommitInfo[src]

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