[][src]Struct ibc_proto::cosmos::base::abci::v1beta1::GasInfo

pub struct GasInfo {
    pub gas_wanted: u64,
    pub gas_used: u64,
}

GasInfo defines tx execution gas context.

Fields

gas_wanted: u64

GasWanted is the maximum units of work we allow this tx to perform.

gas_used: u64

GasUsed is the amount of gas actually consumed.

Trait Implementations

impl Clone for GasInfo[src]

impl Debug for GasInfo[src]

impl Default for GasInfo[src]

impl Message for GasInfo[src]

impl PartialEq<GasInfo> for GasInfo[src]

impl StructuralPartialEq for GasInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for GasInfo

impl Send for GasInfo

impl Sync for GasInfo

impl Unpin for GasInfo

impl UnwindSafe for GasInfo

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]