Struct forest_actor::paych::State[][src]

pub struct State {
    pub from: Address,
    pub to: Address,
    pub to_send: TokenAmount,
    pub settling_at: ChainEpoch,
    pub min_settle_height: ChainEpoch,
    pub lane_states: Cid,
}

A given payment channel actor is established by from to enable off-chain microtransactions to to address to be reconciled and tallied on chain.

Fields

from: Address

Channel owner, who has funded the actor.

to: Address

Recipient of payouts from channel.

to_send: TokenAmount

Amount successfully redeemed through the payment channel, paid out on Collect.

settling_at: ChainEpoch

Height at which the channel can be collected.

min_settle_height: ChainEpoch

Height before which the channel ToSend cannot be collected.

lane_states: Cid

Collections of lane states for the channel, maintained in ID order.

Implementations

impl State[src]

pub fn new(from: Address, to: Address, empty_arr_cid: Cid) -> Self[src]

Trait Implementations

impl Cbor for State[src]

impl Debug for State[src]

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

impl Serialize for State[src]

Auto Trait Implementations

impl RefUnwindSafe for State

impl Send for State

impl Sync for State

impl Unpin for State

impl UnwindSafe for State

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>,