Struct alloy_eips::eip1898::NumHash
source · pub struct NumHash {
pub number: u64,
pub hash: B256,
}
Expand description
A number and a hash.
Fields§
§number: u64
The number
hash: B256
The hash.
Implementations§
source§impl NumHash
impl NumHash
sourcepub const fn new(number: u64, hash: B256) -> Self
pub const fn new(number: u64, hash: B256) -> Self
Creates a new NumHash
from a number and hash.
sourcepub const fn into_components(self) -> (u64, B256)
pub const fn into_components(self) -> (u64, B256)
Consumes Self
and returns the number and hash
sourcepub fn matches_block_or_num(&self, block: &HashOrNumber) -> bool
pub fn matches_block_or_num(&self, block: &HashOrNumber) -> bool
Returns whether or not the block matches the given HashOrNumber.
Trait Implementations§
source§impl<'de> Deserialize<'de> for NumHash
impl<'de> Deserialize<'de> for NumHash
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 NumHash
impl PartialEq for NumHash
impl Copy for NumHash
impl Eq for NumHash
impl StructuralPartialEq for NumHash
Auto Trait Implementations§
impl Freeze for NumHash
impl RefUnwindSafe for NumHash
impl Send for NumHash
impl Sync for NumHash
impl Unpin for NumHash
impl UnwindSafe for NumHash
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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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<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
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.