pub struct StorageWriteEntry {
pub value: U256,
pub paid: u32,
}Expand description
Merged value for storage_writes: pending written value + pubdata paid
(formerly the separate storage_changes + paid_changes maps).
Fields§
§value: U256Pending written value for the slot.
paid: u32Pubdata cost paid for writing this slot (0 for free-storage slots).
Trait Implementations§
Source§impl Clone for StorageWriteEntry
impl Clone for StorageWriteEntry
Source§fn clone(&self) -> StorageWriteEntry
fn clone(&self) -> StorageWriteEntry
Returns a duplicate 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 StorageWriteEntry
impl Debug for StorageWriteEntry
Source§impl Default for StorageWriteEntry
impl Default for StorageWriteEntry
Source§fn default() -> StorageWriteEntry
fn default() -> StorageWriteEntry
Returns the “default value” for a type. Read more
impl Copy for StorageWriteEntry
Auto Trait Implementations§
impl Freeze for StorageWriteEntry
impl RefUnwindSafe for StorageWriteEntry
impl Send for StorageWriteEntry
impl Sync for StorageWriteEntry
impl Unpin for StorageWriteEntry
impl UnwindSafe for StorageWriteEntry
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