[][src]Struct casper_types::auction::UnbondingPurse

pub struct UnbondingPurse {
    pub purse: URef,
    pub origin: PublicKey,
    pub era_of_withdrawal: u64,
    pub amount: U512,
}

Unbonding purse.

Fields

purse: URef

Unbonding Purse.

origin: PublicKey

Unbonding Origin.

era_of_withdrawal: u64

Unbonding Era.

amount: U512

Unbonding Amount.

Trait Implementations

impl CLTyped for UnbondingPurse[src]

impl Clone for UnbondingPurse[src]

impl Copy for UnbondingPurse[src]

impl Eq for UnbondingPurse[src]

impl FromBytes for UnbondingPurse[src]

impl PartialEq<UnbondingPurse> for UnbondingPurse[src]

impl StructuralEq for UnbondingPurse[src]

impl StructuralPartialEq for UnbondingPurse[src]

impl ToBytes for UnbondingPurse[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.