Struct alloy_zksync::types::StorageProof
source · pub struct StorageProof {
pub key: B256,
pub proof: Vec<B256>,
pub value: B256,
pub index: u64,
}
Expand description
Merkle proof for a storage value.
Fields§
§key: B256
Storage key for which the proof is provided.
proof: Vec<B256>
Hashes that constitute the Merkle path from the leaf node (representing the storage key-value pair) to the root of the Merkle tree. The path is ordered from the root to the leaf. The root hash itself is not included in this array because it is published on L1 as part of the L1 batch commit data.
value: B256
Value stored in the specified storage key at the time of the specified l1BatchNumber.
index: u64
A 1-based index representing the position of the tree entry within the Merkle tree. This index is used to help reconstruct the Merkle path during verification.
Trait Implementations§
source§impl Clone for StorageProof
impl Clone for StorageProof
source§fn clone(&self) -> StorageProof
fn clone(&self) -> StorageProof
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 StorageProof
impl Debug for StorageProof
source§impl<'de> Deserialize<'de> for StorageProof
impl<'de> Deserialize<'de> for StorageProof
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 StorageProof
impl PartialEq for StorageProof
source§fn eq(&self, other: &StorageProof) -> bool
fn eq(&self, other: &StorageProof) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for StorageProof
impl Serialize for StorageProof
impl StructuralPartialEq for StorageProof
Auto Trait Implementations§
impl Freeze for StorageProof
impl RefUnwindSafe for StorageProof
impl Send for StorageProof
impl Sync for StorageProof
impl Unpin for StorageProof
impl UnwindSafe for StorageProof
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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