Struct forest_actor::miner::SubmitWindowedPoStParams[][src]

pub struct SubmitWindowedPoStParams {
    pub deadline: usize,
    pub partitions: Vec<PoStPartition>,
    pub proofs: Vec<PoStProof>,
    pub chain_commit_epoch: ChainEpoch,
    pub chain_commit_rand: Randomness,
}

Information submitted by a miner to provide a Window PoSt.

Fields

deadline: usize

The deadline index which the submission targets.

partitions: Vec<PoStPartition>

The partitions being proven.

proofs: Vec<PoStProof>

Array of proofs, one per distinct registered proof type present in the sectors being proven. In the usual case of a single proof type, this array will always have a single element (independent of number of partitions).

chain_commit_epoch: ChainEpoch

The epoch at which these proofs is being committed to a particular chain.

chain_commit_rand: Randomness

The ticket randomness on the chain at the chain_commit_epoch on the chain this post is committed to.

Trait Implementations

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

impl Serialize for SubmitWindowedPoStParams[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, 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>,