[][src]Struct sp_state_machine::OverlayedChanges

pub struct OverlayedChanges { /* fields omitted */ }

The overlayed changes to state to be queried on top of the backend.

A transaction shares all prospective changes within an inner overlay that can be cleared.

Methods

impl OverlayedChanges[src]

pub fn is_empty(&self) -> bool[src]

Whether the overlayed changes are empty.

pub fn storage(&self, key: &[u8]) -> Option<Option<&[u8]>>[src]

Returns a double-Option: None if the key is unknown (i.e. and the query should be refered to the backend); Some(None) if the key has been deleted. Some(Some(...)) for a key whose value has been set.

pub fn child_storage(
    &self,
    storage_key: &[u8],
    key: &[u8]
) -> Option<Option<&[u8]>>
[src]

Returns a double-Option: None if the key is unknown (i.e. and the query should be refered to the backend); Some(None) if the key has been deleted. Some(Some(...)) for a key whose value has been set.

pub fn discard_prospective(&mut self)[src]

Discard prospective changes to state.

pub fn commit_prospective(&mut self)[src]

Commit prospective changes to state.

pub fn into_committed(
    self
) -> (impl Iterator<Item = (Vec<u8>, Option<Vec<u8>>)>, impl Iterator<Item = (Vec<u8>, (impl Iterator<Item = (Vec<u8>, Option<Vec<u8>>)>, OwnedChildInfo))>)
[src]

Consume OverlayedChanges and take committed set.

Panics: Will panic if there are any uncommitted prospective changes.

pub fn child_info(&self, storage_key: &[u8]) -> Option<&OwnedChildInfo>[src]

Get child info for a storage key. Take the latest value so prospective first.

pub fn next_storage_key_change(
    &self,
    key: &[u8]
) -> Option<(&[u8], &OverlayedValue)>
[src]

Returns the next (in lexicographic order) storage key in the overlayed alongside its value. If no value is next then None is returned.

pub fn next_child_storage_key_change(
    &self,
    storage_key: &[u8],
    key: &[u8]
) -> Option<(&[u8], &OverlayedValue)>
[src]

Returns the next (in lexicographic order) child storage key in the overlayed alongside its value. If no value is next then None is returned.

Trait Implementations

impl Clone for OverlayedChanges[src]

impl Debug for OverlayedChanges[src]

impl Default for OverlayedChanges[src]

Auto Trait Implementations

impl RefUnwindSafe for OverlayedChanges

impl Send for OverlayedChanges

impl Sync for OverlayedChanges

impl Unpin for OverlayedChanges

impl UnwindSafe for OverlayedChanges

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> Clear for T where
    T: InitializableFromZeroed + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default
[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> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>, 
[src]