Struct alloy_consensus::Receipts
source · pub struct Receipts<T> {
pub receipt_vec: Vec<Vec<T>>,
}
Expand description
Receipt containing result of transaction execution.
Fields§
§receipt_vec: Vec<Vec<T>>
A two-dimensional vector of Receipt
instances.
Implementations§
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for Receipts<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Receipts<T>where
T: Deserialize<'de>,
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<T> FromIterator<Vec<T>> for Receipts<T>
impl<T> FromIterator<Vec<T>> for Receipts<T>
source§impl<T> IntoIterator for Receipts<T>
impl<T> IntoIterator for Receipts<T>
source§impl<T: PartialEq> PartialEq for Receipts<T>
impl<T: PartialEq> PartialEq for Receipts<T>
impl<T: Eq> Eq for Receipts<T>
impl<T> StructuralPartialEq for Receipts<T>
Auto Trait Implementations§
impl<T> Freeze for Receipts<T>
impl<T> RefUnwindSafe for Receipts<T>where
T: RefUnwindSafe,
impl<T> Send for Receipts<T>where
T: Send,
impl<T> Sync for Receipts<T>where
T: Sync,
impl<T> Unpin for Receipts<T>where
T: Unpin,
impl<T> UnwindSafe for Receipts<T>where
T: UnwindSafe,
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
)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.