[][src]Struct sp_state_machine::BasicExternalities

pub struct BasicExternalities { /* fields omitted */ }

Simple Map-based Externalities impl.

Implementations

impl BasicExternalities[src]

pub fn new(inner: Storage) -> Self[src]

Create a new instance of BasicExternalities

pub fn new_empty() -> Self[src]

New basic externalities with empty storage.

pub fn insert(&mut self, k: StorageKey, v: StorageValue) -> Option<StorageValue>[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]

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.

pub fn extensions(&mut self) -> &mut Extensions[src]

List of active extensions.

pub fn register_extension(&mut self, ext: impl Extension)[src]

Register an extension.

Trait Implementations

impl Debug for BasicExternalities[src]

impl Default for BasicExternalities[src]

impl ExtensionStore for BasicExternalities[src]

impl Externalities for BasicExternalities[src]

impl From<BTreeMap<Vec<u8, Global>, Vec<u8, Global>>> for BasicExternalities[src]

impl FromIterator<(Vec<u8, Global>, Vec<u8, Global>)> for BasicExternalities[src]

impl PartialEq<BasicExternalities> for BasicExternalities[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub 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]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Same<T> for T

type Output = T

Should always be Self

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<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,