Struct sp_state_machine::Ext [−][src]
pub struct Ext<'a, H, N, B> where
H: Hasher,
B: 'a + Backend<H>,
N: BlockNumber, { pub id: u16, // some fields omitted }
Wraps a read-only backend, call executor, and current overlayed changes.
Fields
id: u16
Pseudo-unique id used for tracing.
Implementations
impl<'a, H, N, B> Ext<'a, H, N, B> where
H: Hasher,
B: Backend<H>,
N: BlockNumber,
[src]
impl<'a, H, N, B> Ext<'a, H, N, B> where
H: Hasher,
B: Backend<H>,
N: BlockNumber,
[src]pub fn new(
overlay: &'a mut OverlayedChanges,
storage_transaction_cache: &'a mut StorageTransactionCache<B::Transaction, H, N>,
backend: &'a B,
changes_trie_state: Option<ChangesTrieState<'a, H, N>>,
extensions: Option<&'a mut Extensions>
) -> Self
[src]
overlay: &'a mut OverlayedChanges,
storage_transaction_cache: &'a mut StorageTransactionCache<B::Transaction, H, N>,
backend: &'a B,
changes_trie_state: Option<ChangesTrieState<'a, H, N>>,
extensions: Option<&'a mut Extensions>
) -> Self
Create a new Ext
from overlayed changes and read-only backend
Trait Implementations
impl<'a, H, N, B> ExtensionStore for Ext<'a, H, N, B> where
H: Hasher,
B: 'a + Backend<H>,
N: BlockNumber,
[src]
impl<'a, H, N, B> ExtensionStore for Ext<'a, H, N, B> where
H: Hasher,
B: 'a + Backend<H>,
N: BlockNumber,
[src]impl<'a, H, N, B> Externalities for Ext<'a, H, N, B> where
H: Hasher,
H::Out: Ord + 'static + Codec,
B: Backend<H>,
N: BlockNumber,
[src]
impl<'a, H, N, B> Externalities for Ext<'a, H, N, B> where
H: Hasher,
H::Out: Ord + 'static + Codec,
B: Backend<H>,
N: BlockNumber,
[src]fn set_offchain_storage(&mut self, key: &[u8], value: Option<&[u8]>)
[src]
fn storage(&self, key: &[u8]) -> Option<StorageValue>
[src]
fn storage_hash(&self, key: &[u8]) -> Option<Vec<u8>>
[src]
fn child_storage(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<StorageValue>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<StorageValue>
fn child_storage_hash(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn exists_storage(&self, key: &[u8]) -> bool
[src]
fn exists_child_storage(&self, child_info: &ChildInfo, key: &[u8]) -> bool
[src]
fn next_storage_key(&self, key: &[u8]) -> Option<StorageKey>
[src]
fn next_child_storage_key(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<StorageKey>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Option<StorageKey>
fn place_storage(&mut self, key: StorageKey, value: Option<StorageValue>)
[src]
fn place_child_storage(
&mut self,
child_info: &ChildInfo,
key: StorageKey,
value: Option<StorageValue>
)
[src]
&mut self,
child_info: &ChildInfo,
key: StorageKey,
value: Option<StorageValue>
)
fn kill_child_storage(
&mut self,
child_info: &ChildInfo,
limit: Option<u32>
) -> bool
[src]
&mut self,
child_info: &ChildInfo,
limit: Option<u32>
) -> bool
fn clear_prefix(&mut self, prefix: &[u8])
[src]
fn clear_child_prefix(&mut self, child_info: &ChildInfo, prefix: &[u8])
[src]
fn storage_append(&mut self, key: Vec<u8>, value: Vec<u8>)
[src]
fn storage_root(&mut self) -> Vec<u8>
[src]
fn child_storage_root(&mut self, child_info: &ChildInfo) -> Vec<u8>
[src]
fn storage_changes_root(
&mut self,
parent_hash: &[u8]
) -> Result<Option<Vec<u8>>, ()>
[src]
&mut self,
parent_hash: &[u8]
) -> Result<Option<Vec<u8>>, ()>
fn storage_start_transaction(&mut self)
[src]
fn storage_rollback_transaction(&mut self) -> Result<(), ()>
[src]
fn storage_commit_transaction(&mut self) -> Result<(), ()>
[src]
fn wipe(&mut self)
[src]
fn commit(&mut self)
[src]
fn read_write_count(&self) -> (u32, u32, u32, u32)
[src]
fn reset_read_write_count(&mut self)
[src]
fn get_whitelist(&self) -> Vec<TrackedStorageKey>
[src]
fn set_whitelist(&mut self, new: Vec<TrackedStorageKey>)
[src]
pub fn set_storage(&mut self, key: Vec<u8, Global>, value: Vec<u8, Global>)
[src]
pub fn set_child_storage(
&mut self,
child_info: &ChildInfo,
key: Vec<u8, Global>,
value: Vec<u8, Global>
)
[src]
&mut self,
child_info: &ChildInfo,
key: Vec<u8, Global>,
value: Vec<u8, Global>
)
pub fn clear_storage(&mut self, key: &[u8])
[src]
pub fn clear_child_storage(&mut self, child_info: &ChildInfo, key: &[u8])
[src]
Auto Trait Implementations
impl<'a, H, N, B> !RefUnwindSafe for Ext<'a, H, N, B>
impl<'a, H, N, B> Send for Ext<'a, H, N, B> where
B: Sync,
B: Sync,
impl<'a, H, N, B> !Sync for Ext<'a, H, N, B>
impl<'a, H, N, B> Unpin for Ext<'a, H, N, B> where
N: Unpin,
N: Unpin,
impl<'a, H, N, B> !UnwindSafe for Ext<'a, H, N, B>
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]