Struct ckb_jsonrpc_types::TxVerbosity[][src]

pub struct TxVerbosity {
    pub cycles: Uint64,
    pub size: Uint64,
    pub fee: Capacity,
    pub ancestors_size: Uint64,
    pub ancestors_cycles: Uint64,
    pub ancestors_count: Uint64,
}

Transaction verbose info

Fields

cycles: Uint64

Consumed cycles.

size: Uint64

The transaction serialized size in block.

fee: Capacity

The transaction fee.

ancestors_size: Uint64

Size of in-tx-pool ancestor transactions

ancestors_cycles: Uint64

Cycles of in-tx-pool ancestor transactions

ancestors_count: Uint64

Number of in-tx-pool ancestor transactions

Trait Implementations

impl Clone for TxVerbosity[src]

impl Debug for TxVerbosity[src]

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

impl Eq for TxVerbosity[src]

impl From<TxEntryInfo> for TxVerbosity[src]

impl Hash for TxVerbosity[src]

impl PartialEq<TxVerbosity> for TxVerbosity[src]

impl Serialize for TxVerbosity[src]

impl StructuralEq for TxVerbosity[src]

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