[][src]Struct sp_state_machine::StateMachine

pub struct StateMachine<'a, B, H, N, Exec> where
    H: Hasher,
    B: Backend<H>,
    N: ChangesTrieBlockNumber
{ /* fields omitted */ }

The substrate state machine.

Implementations

impl<'a, B, H, N, Exec> StateMachine<'a, B, H, N, Exec> where
    H: Hasher,
    H::Out: Ord + 'static + Codec,
    Exec: CodeExecutor + Clone + 'static,
    B: Backend<H>,
    N: BlockNumber
[src]

pub fn new(
    backend: &'a B,
    changes_trie_state: Option<ChangesTrieState<'a, H, N>>,
    overlay: &'a mut OverlayedChanges,
    offchain_overlay: &'a mut OffchainOverlayedChanges,
    exec: &'a Exec,
    method: &'a str,
    call_data: &'a [u8],
    extensions: Extensions,
    runtime_code: &'a RuntimeCode,
    spawn_handle: Box<dyn CloneableSpawn>
) -> Self
[src]

Creates new substrate state machine.

pub fn with_storage_transaction_cache(
    self,
    cache: Option<&'a mut StorageTransactionCache<B::Transaction, H, N>>
) -> Self
[src]

Use given cache as storage transaction cache.

The cache will be used to cache storage transactions that can be build while executing a function in the runtime. For example, when calculating the storage root a transaction is build that will be cached.

pub fn execute(
    &mut self,
    strategy: ExecutionStrategy
) -> Result<Vec<u8>, Box<dyn Error>>
[src]

Execute a call using the given state backend, overlayed changes, and call executor.

On an error, no prospective changes are written to the overlay.

Note: changes to code will be in place if this call is made again. For running partial blocks (e.g. a transaction at a time), ensure a different method is used.

Returns the SCALE encoded result of the executed function.

pub fn execute_using_consensus_failure_handler<Handler, R, NC>(
    &mut self,
    manager: ExecutionManager<Handler>,
    native_call: Option<NC>
) -> Result<NativeOrEncoded<R>, Box<dyn Error>> where
    R: Decode + Encode + PartialEq,
    NC: FnOnce() -> Result<R, String> + UnwindSafe,
    Handler: FnOnce(Result<NativeOrEncoded<R>, Exec::Error>, Result<NativeOrEncoded<R>, Exec::Error>) -> Result<NativeOrEncoded<R>, Exec::Error>, 
[src]

Execute a call using the given state backend, overlayed changes, and call executor.

On an error, no prospective changes are written to the overlay.

Note: changes to code will be in place if this call is made again. For running partial blocks (e.g. a transaction at a time), ensure a different method is used.

Returns the result of the executed function either in native representation R or in SCALE encoded representation.

Trait Implementations

impl<'a, B, H, N, Exec> Drop for StateMachine<'a, B, H, N, Exec> where
    H: Hasher,
    B: Backend<H>,
    N: ChangesTrieBlockNumber
[src]

Auto Trait Implementations

impl<'a, B, H, N, Exec> !RefUnwindSafe for StateMachine<'a, B, H, N, Exec>

impl<'a, B, H, N, Exec> !Send for StateMachine<'a, B, H, N, Exec>

impl<'a, B, H, N, Exec> !Sync for StateMachine<'a, B, H, N, Exec>

impl<'a, B, H, N, Exec> Unpin for StateMachine<'a, B, H, N, Exec> where
    N: Unpin

impl<'a, B, H, N, Exec> !UnwindSafe for StateMachine<'a, B, H, N, Exec>

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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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> 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>,