Struct forest_actor::market::DealProposal[][src]

pub struct DealProposal {
    pub piece_cid: Cid,
    pub piece_size: PaddedPieceSize,
    pub verified_deal: bool,
    pub client: Address,
    pub provider: Address,
    pub label: String,
    pub start_epoch: ChainEpoch,
    pub end_epoch: ChainEpoch,
    pub storage_price_per_epoch: TokenAmount,
    pub provider_collateral: TokenAmount,
    pub client_collateral: TokenAmount,
}

Note: Deal Collateral is only released and returned to clients and miners when the storage deal stops counting towards power. In the current iteration, it will be released when the sector containing the storage deals expires, even though some storage deals can expire earlier than the sector does. Collaterals are denominated in PerEpoch to incur a cost for self dealing or minimal deals that last for a long time. Note: ClientCollateralPerEpoch may not be needed and removed pending future confirmation. There will be a Minimum value for both client and provider deal collateral.

Fields

piece_cid: Cidpiece_size: PaddedPieceSizeverified_deal: boolclient: Addressprovider: Addresslabel: String

Arbitrary client chosen label to apply to the deal

start_epoch: ChainEpochend_epoch: ChainEpochstorage_price_per_epoch: TokenAmountprovider_collateral: TokenAmountclient_collateral: TokenAmount

Implementations

impl DealProposal[src]

pub fn duration(&self) -> ChainEpoch[src]

pub fn weight(&self) -> DealWeight[src]

Computes weight for a deal proposal, which is a function of its size and duration.

pub fn total_storage_fee(&self) -> TokenAmount[src]

pub fn client_balance_requirement(&self) -> TokenAmount[src]

pub fn provider_balance_requirement(&self) -> &TokenAmount[src]

Trait Implementations

impl Cbor for DealProposal[src]

impl Clone for DealProposal[src]

impl Debug for DealProposal[src]

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

impl PartialEq<DealProposal> for DealProposal[src]

impl Serialize for DealProposal[src]

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