pub struct AccountDiff {
pub balance: Diff<U256>,
pub nonce: Diff<U256>,
pub code: Diff<Bytes>,
pub storage: BTreeMap<H256, Diff<H256>>,
}
Expand description
Serde-friendly AccountDiff
shadow.
Fields§
§balance: Diff<U256>
Account balance.
nonce: Diff<U256>
Account nonce.
code: Diff<Bytes>
Account code.
storage: BTreeMap<H256, Diff<H256>>
Account storage.
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<'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 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