Struct ckb_jsonrpc_types::PoolTransactionEntry[][src]

pub struct PoolTransactionEntry {
    pub transaction: TransactionView,
    pub cycles: Cycle,
    pub size: Uint64,
    pub fee: Capacity,
}

The transaction entry in the pool.

Fields

transaction: TransactionView

The transaction.

cycles: Cycle

Consumed cycles.

size: Uint64

The transaction serialized size in block.

fee: Capacity

The transaction fee.

Trait Implementations

impl Clone for PoolTransactionEntry[src]

impl Debug for PoolTransactionEntry[src]

impl Default for PoolTransactionEntry[src]

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

impl Eq for PoolTransactionEntry[src]

impl From<PoolTransactionEntry> for PoolTransactionEntry[src]

impl Hash for PoolTransactionEntry[src]

impl PartialEq<PoolTransactionEntry> for PoolTransactionEntry[src]

impl Serialize for PoolTransactionEntry[src]

impl StructuralEq for PoolTransactionEntry[src]

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