Struct sc_rpc::state::ChildState
source · pub struct ChildState<Block, Client> { /* private fields */ }
Expand description
Child state API with subscriptions support.
Trait Implementations§
source§impl<Block, Client> ChildStateApiServer<<Block as Block>::Hash> for ChildState<Block, Client>where
Block: BlockT + 'static,
Client: Send + Sync + 'static,
impl<Block, Client> ChildStateApiServer<<Block as Block>::Hash> for ChildState<Block, Client>where Block: BlockT + 'static, Client: Send + Sync + 'static,
source§fn storage_keys(
&self,
storage_key: PrefixedStorageKey,
key_prefix: StorageKey,
block: Option<Block::Hash>
) -> RpcResult<Vec<StorageKey>>
fn storage_keys( &self, storage_key: PrefixedStorageKey, key_prefix: StorageKey, block: Option<Block::Hash> ) -> RpcResult<Vec<StorageKey>>
Returns the keys with prefix from a child storage, leave empty to get all the keys
source§fn storage_keys_paged(
&self,
storage_key: PrefixedStorageKey,
prefix: Option<StorageKey>,
count: u32,
start_key: Option<StorageKey>,
block: Option<Block::Hash>
) -> RpcResult<Vec<StorageKey>>
fn storage_keys_paged( &self, storage_key: PrefixedStorageKey, prefix: Option<StorageKey>, count: u32, start_key: Option<StorageKey>, block: Option<Block::Hash> ) -> RpcResult<Vec<StorageKey>>
Returns the keys with prefix from a child storage with pagination support.
Up to
count
keys will be returned.
If start_key
is passed, return next keys in storage in lexicographic order.source§fn storage(
&self,
storage_key: PrefixedStorageKey,
key: StorageKey,
block: Option<Block::Hash>
) -> RpcResult<Option<StorageData>>
fn storage( &self, storage_key: PrefixedStorageKey, key: StorageKey, block: Option<Block::Hash> ) -> RpcResult<Option<StorageData>>
Returns a child storage entry at a specific block’s state.
source§fn storage_entries(
&self,
storage_key: PrefixedStorageKey,
keys: Vec<StorageKey>,
block: Option<Block::Hash>
) -> RpcResult<Vec<Option<StorageData>>>
fn storage_entries( &self, storage_key: PrefixedStorageKey, keys: Vec<StorageKey>, block: Option<Block::Hash> ) -> RpcResult<Vec<Option<StorageData>>>
Returns child storage entries for multiple keys at a specific block’s state.
source§fn storage_hash(
&self,
storage_key: PrefixedStorageKey,
key: StorageKey,
block: Option<Block::Hash>
) -> RpcResult<Option<Block::Hash>>
fn storage_hash( &self, storage_key: PrefixedStorageKey, key: StorageKey, block: Option<Block::Hash> ) -> RpcResult<Option<Block::Hash>>
Returns the hash of a child storage entry at a block’s state.
source§fn storage_size(
&self,
storage_key: PrefixedStorageKey,
key: StorageKey,
block: Option<Block::Hash>
) -> RpcResult<Option<u64>>
fn storage_size( &self, storage_key: PrefixedStorageKey, key: StorageKey, block: Option<Block::Hash> ) -> RpcResult<Option<u64>>
Returns the size of a child storage entry at a block’s state.
source§fn read_child_proof(
&self,
child_storage_key: PrefixedStorageKey,
keys: Vec<StorageKey>,
block: Option<Block::Hash>
) -> RpcResult<ReadProof<Block::Hash>>
fn read_child_proof( &self, child_storage_key: PrefixedStorageKey, keys: Vec<StorageKey>, block: Option<Block::Hash> ) -> RpcResult<ReadProof<Block::Hash>>
Returns proof of storage for child key entries at a specific block’s state.
Auto Trait Implementations§
impl<Block, Client> !RefUnwindSafe for ChildState<Block, Client>
impl<Block, Client> Send for ChildState<Block, Client>
impl<Block, Client> Sync for ChildState<Block, Client>
impl<Block, Client> Unpin for ChildState<Block, Client>
impl<Block, Client> !UnwindSafe for ChildState<Block, Client>
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.