[][src]Struct sp_storage::StorageChangeSet

pub struct StorageChangeSet<Hash> {
    pub block: Hash,
    pub changes: Vec<(StorageKey, Option<StorageData>)>,
}

Storage change set

Fields

block: Hash

Block hash

changes: Vec<(StorageKey, Option<StorageData>)>

A list of changes

Trait Implementations

impl<Hash> Debug for StorageChangeSet<Hash> where
    Hash: Debug
[src]

impl<'de, Hash> Deserialize<'de> for StorageChangeSet<Hash> where
    Hash: Deserialize<'de>, 
[src]

impl<Hash: Eq> Eq for StorageChangeSet<Hash>[src]

impl<Hash: PartialEq> PartialEq<StorageChangeSet<Hash>> for StorageChangeSet<Hash>[src]

impl<Hash> Serialize for StorageChangeSet<Hash> where
    Hash: Serialize
[src]

impl<Hash> StructuralEq for StorageChangeSet<Hash>[src]

impl<Hash> StructuralPartialEq for StorageChangeSet<Hash>[src]

Auto Trait Implementations

impl<Hash> RefUnwindSafe for StorageChangeSet<Hash> where
    Hash: RefUnwindSafe

impl<Hash> Send for StorageChangeSet<Hash> where
    Hash: Send

impl<Hash> Sync for StorageChangeSet<Hash> where
    Hash: Sync

impl<Hash> Unpin for StorageChangeSet<Hash> where
    Hash: Unpin

impl<Hash> UnwindSafe for StorageChangeSet<Hash> where
    Hash: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.