pub struct ContractStorageChange {
pub value: Bytes,
pub previous: Bytes,
}Fields§
§value: Bytes§previous: BytesImplementations§
Trait Implementations§
Source§impl Clone for ContractStorageChange
impl Clone for ContractStorageChange
Source§fn clone(&self) -> ContractStorageChange
fn clone(&self) -> ContractStorageChange
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 ContractStorageChange
impl Debug for ContractStorageChange
Source§impl DeepSizeOf for ContractStorageChange
impl DeepSizeOf for ContractStorageChange
Source§fn deep_size_of_children(&self, context: &mut Context) -> usize
fn deep_size_of_children(&self, context: &mut Context) -> usize
Returns an estimation of the heap-managed storage of this object.
This does not include the size of the object itself. Read more
Source§fn deep_size_of(&self) -> usize
fn deep_size_of(&self) -> usize
Returns an estimation of a total size of memory owned by the
object, including heap-managed storage. Read more
Source§impl PartialEq for ContractStorageChange
impl PartialEq for ContractStorageChange
impl StructuralPartialEq for ContractStorageChange
Auto Trait Implementations§
impl !Freeze for ContractStorageChange
impl RefUnwindSafe for ContractStorageChange
impl Send for ContractStorageChange
impl Sync for ContractStorageChange
impl Unpin for ContractStorageChange
impl UnwindSafe for ContractStorageChange
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