[−][src]Struct sp_state_machine::BasicExternalities
Simple Map-based Externalities impl.
Methods
impl BasicExternalities[src]
pub fn new(inner: Storage) -> Self[src]
Create a new instance of BasicExternalities
pub fn insert(&mut self, k: Vec<u8>, v: Vec<u8>) -> Option<Vec<u8>>[src]
Insert key/value
pub fn into_storages(self) -> Storage[src]
Consume self and returns inner storages
pub fn execute_with_storage<R>(
storage: &mut Storage,
f: impl FnOnce() -> R
) -> R[src]
storage: &mut Storage,
f: impl FnOnce() -> R
) -> R
Execute the given closure f with the externalities set and initialized with storage.
Returns the result of the closure and updates storage with all changes.
pub fn execute_with<R>(&mut self, f: impl FnOnce() -> R) -> R[src]
Execute the given closure while self is set as externalities.
Returns the result of the given closure.
Trait Implementations
impl Debug for BasicExternalities[src]
impl Default for BasicExternalities[src]
impl ExtensionStore for BasicExternalities[src]
fn extension_by_type_id(&mut self, _: TypeId) -> Option<&mut dyn Any>[src]
impl Externalities for BasicExternalities[src]
fn storage(&self, key: &[u8]) -> Option<Vec<u8>>[src]
fn storage_hash(&self, key: &[u8]) -> Option<Vec<u8>>[src]
fn original_storage(&self, key: &[u8]) -> Option<Vec<u8>>[src]
fn original_storage_hash(&self, key: &[u8]) -> Option<Vec<u8>>[src]
fn child_storage(
&self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>[src]
&self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn child_storage_hash(
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>[src]
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn original_child_storage_hash(
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>[src]
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn original_child_storage(
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>[src]
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn next_storage_key(&self, key: &[u8]) -> Option<Vec<u8>>[src]
fn next_child_storage_key(
&self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>[src]
&self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
key: &[u8]
) -> Option<Vec<u8>>
fn place_storage(&mut self, key: Vec<u8>, maybe_value: Option<Vec<u8>>)[src]
fn place_child_storage(
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: Vec<u8>,
value: Option<Vec<u8>>
)[src]
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: Vec<u8>,
value: Option<Vec<u8>>
)
fn kill_child_storage(
&mut self,
storage_key: ChildStorageKey,
_child_info: ChildInfo
)[src]
&mut self,
storage_key: ChildStorageKey,
_child_info: ChildInfo
)
fn clear_prefix(&mut self, prefix: &[u8])[src]
fn clear_child_prefix(
&mut self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
prefix: &[u8]
)[src]
&mut self,
storage_key: ChildStorageKey,
_child_info: ChildInfo,
prefix: &[u8]
)
fn chain_id(&self) -> u64[src]
fn storage_root(&mut self) -> Vec<u8>[src]
fn child_storage_root(&mut self, storage_key: ChildStorageKey) -> Vec<u8>[src]
fn storage_changes_root(
&mut self,
_parent: &[u8]
) -> Result<Option<Vec<u8>>, ()>[src]
&mut self,
_parent: &[u8]
) -> Result<Option<Vec<u8>>, ()>
fn set_storage(&mut self, key: Vec<u8>, value: Vec<u8>)[src]
fn set_child_storage(
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: Vec<u8>,
value: Vec<u8>
)[src]
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: Vec<u8>,
value: Vec<u8>
)
fn clear_storage(&mut self, key: &[u8])[src]
fn clear_child_storage(
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
)[src]
&mut self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
)
fn exists_storage(&self, key: &[u8]) -> bool[src]
fn exists_child_storage(
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> bool[src]
&self,
storage_key: ChildStorageKey,
child_info: ChildInfo,
key: &[u8]
) -> bool
impl From<BTreeMap<Vec<u8>, Vec<u8>>> for BasicExternalities[src]
impl FromIterator<(Vec<u8>, Vec<u8>)> for BasicExternalities[src]
impl PartialEq<BasicExternalities> for BasicExternalities[src]
Auto Trait Implementations
impl RefUnwindSafe for BasicExternalities
impl Send for BasicExternalities
impl Sync for BasicExternalities
impl Unpin for BasicExternalities
impl UnwindSafe for BasicExternalities
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized, [src]
T: InitializableFromZeroed + ?Sized,
impl<T> From<T> for T[src]
impl<T> InitializableFromZeroed for T where
T: Default, [src]
T: Default,
unsafe fn initialize(place: *mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>, [src]
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
fn from_ref(outer: &Outer) -> &T[src]
Get a reference to the inner from the outer.
fn from_mut(outer: &mut Outer) -> &mut T[src]
Get a mutable reference to the inner from the outer.
impl<T> MaybeDebug for T where
T: Debug, [src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug, [src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug, [src]
T: Debug,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>, [src]
T: UncheckedFrom<S>,
fn unchecked_into(self) -> T[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,