Struct common_types::account_diff::AccountDiff
source · [−]pub struct AccountDiff {
pub balance: Diff<U256>,
pub nonce: Diff<U256>,
pub code: Diff<Bytes>,
pub storage: BTreeMap<H256, Diff<H256>>,
}
Expand description
Account diff.
Fields
balance: Diff<U256>
Change in balance, allowed to be Diff::Same
.
nonce: Diff<U256>
Change in nonce, allowed to be Diff::Same
.
code: Diff<Bytes>
Change in code, allowed to be Diff::Same
.
storage: BTreeMap<H256, Diff<H256>>
Change in storage, values are not allowed to be Diff::Same
.
Implementations
sourceimpl AccountDiff
impl AccountDiff
Trait Implementations
sourceimpl Clone for AccountDiff
impl Clone for AccountDiff
sourcefn clone(&self) -> AccountDiff
fn clone(&self) -> AccountDiff
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AccountDiff
impl Debug for AccountDiff
sourceimpl Display for AccountDiff
impl Display for AccountDiff
sourceimpl PartialEq<AccountDiff> for AccountDiff
impl PartialEq<AccountDiff> for AccountDiff
sourcefn eq(&self, other: &AccountDiff) -> bool
fn eq(&self, other: &AccountDiff) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AccountDiff) -> bool
fn ne(&self, other: &AccountDiff) -> bool
This method tests for !=
.
impl Eq for AccountDiff
impl StructuralEq for AccountDiff
impl StructuralPartialEq for AccountDiff
Auto Trait Implementations
impl RefUnwindSafe for AccountDiff
impl Send for AccountDiff
impl Sync for AccountDiff
impl Unpin for AccountDiff
impl UnwindSafe for AccountDiff
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more