Struct cosmos_sdk_proto::cosmos::staking::v1beta1::UnbondingDelegationEntry[][src]

pub struct UnbondingDelegationEntry {
    pub creation_height: i64,
    pub completion_time: Option<Timestamp>,
    pub initial_balance: String,
    pub balance: String,
}

UnbondingDelegationEntry defines an unbonding object with relevant metadata.

Fields

creation_height: i64

creation_height is the height which the unbonding took place.

completion_time: Option<Timestamp>

completion_time is the unix time for unbonding completion.

initial_balance: String

initial_balance defines the tokens initially scheduled to receive at completion.

balance: String

balance defines the tokens to receive at completion.

Trait Implementations

impl Clone for UnbondingDelegationEntry[src]

impl Debug for UnbondingDelegationEntry[src]

impl Default for UnbondingDelegationEntry[src]

impl Message for UnbondingDelegationEntry[src]

impl PartialEq<UnbondingDelegationEntry> for UnbondingDelegationEntry[src]

impl StructuralPartialEq for UnbondingDelegationEntry[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for T[src]

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

impl<T> WithSubscriber for T[src]