[][src]Struct ckb_jsonrpc_types::CellTransaction

pub struct CellTransaction {
    pub created_by: TransactionPoint,
    pub consumed_by: Option<TransactionPoint>,
}

Cell related transaction information.

Fields

created_by: TransactionPoint

Where this cell is created.

The cell is the created_by.index-th output in the transaction created_by.tx_hash, which has been committed in at the height created_by.block_number in the chain.

consumed_by: Option<TransactionPoint>

Where this cell is consumed.

This is null if the cell is still live.

The cell is consumed as the consumed_by.index-th input in the transaction consumed_by.tx_hash, which has been committed to at the height consumed_by.block_number in the chain.

Trait Implementations

impl Debug for CellTransaction[src]

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

impl Serialize for CellTransaction[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, 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>,