[][src]Struct ckb_jsonrpc_types::LockHashIndexState

pub struct LockHashIndexState {
    pub lock_hash: H256,
    pub block_number: BlockNumber,
    pub block_hash: H256,
}

Cell script lock hash index state.

Fields

lock_hash: H256

The script lock hash.

This index will index cells that lock script hash matches.

block_number: BlockNumber

The max block number this index has already scanned.

block_hash: H256

The hash of the block with the max block number that this index has already scanned.

Trait Implementations

impl Debug for LockHashIndexState[src]

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

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