Trait unc_primitives::types::StateChangesExt
source · pub trait StateChangesExt {
// Required methods
fn from_changes(
raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>>
) -> Result<StateChanges, Error>;
fn from_account_changes(
raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>>
) -> Result<StateChanges, Error>;
fn from_access_key_changes(
raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>>
) -> Result<StateChanges, Error>;
fn from_contract_code_changes(
raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>>
) -> Result<StateChanges, Error>;
fn from_data_changes(
raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>>
) -> Result<StateChanges, Error>;
}Required Methods§
fn from_changes( raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>> ) -> Result<StateChanges, Error>
fn from_account_changes( raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>> ) -> Result<StateChanges, Error>
fn from_access_key_changes( raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>> ) -> Result<StateChanges, Error>
fn from_contract_code_changes( raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>> ) -> Result<StateChanges, Error>
fn from_data_changes( raw_changes: impl Iterator<Item = Result<RawStateChangesWithTrieKey, Error>> ) -> Result<StateChanges, Error>
Object Safety§
This trait is not object safe.