pub struct AccountDiff {
pub balance: Delta<U256>,
pub code: Delta<Bytes>,
pub nonce: Delta<U64>,
pub storage: BTreeMap<B256, Delta<B256>>,
}
Expand description
The diff of an account after a transaction
Fields§
§balance: Delta<U256>
How the balance changed, if at all
code: Delta<Bytes>
How the code changed, if at all
nonce: Delta<U64>
How the nonce changed, if at all
storage: BTreeMap<B256, Delta<B256>>
All touched/changed storage values
Trait Implementations§
source§impl Clone for AccountDiff
impl Clone for AccountDiff
source§fn clone(&self) -> AccountDiff
fn clone(&self) -> AccountDiff
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AccountDiff
impl Debug for AccountDiff
source§impl Default for AccountDiff
impl Default for AccountDiff
source§fn default() -> AccountDiff
fn default() -> AccountDiff
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AccountDiff
impl<'de> Deserialize<'de> for AccountDiff
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for AccountDiff
impl PartialEq for AccountDiff
source§impl Serialize for AccountDiff
impl Serialize for AccountDiff
impl Eq for AccountDiff
impl StructuralPartialEq for AccountDiff
Auto Trait Implementations§
impl !Freeze for AccountDiff
impl RefUnwindSafe for AccountDiff
impl Send for AccountDiff
impl Sync for AccountDiff
impl Unpin for AccountDiff
impl UnwindSafe for AccountDiff
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more