[][src]Struct ckb_jsonrpc_types::LiveCell

pub struct LiveCell {
    pub created_by: TransactionPoint,
    pub cell_output: CellOutput,
    pub output_data_len: Uint64,
    pub cellbase: bool,
}

An indexed live cell.

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 to at the height created_by.block_number in the chain.

cell_output: CellOutput

The cell properties.

output_data_len: Uint64

The cell data length.

cellbase: bool

Whether this cell is an output of a cellbase transaction.

Trait Implementations

impl Debug for LiveCell[src]

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

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