#[non_exhaustive]pub struct Signed<T> {
pub signed: T,
pub signature: Signature,
pub signer: Address,
pub hash: OnceLock<FixedBytes<32>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.signed: T
§signature: Signature
§signer: Address
§hash: OnceLock<FixedBytes<32>>
Implementations§
Source§impl<T> Signed<T>where
T: SignableTransaction<Signature>,
impl<T> Signed<T>where
T: SignableTransaction<Signature>,
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Signed<TxEip1559>
impl<'de> Deserialize<'de> for Signed<TxEip1559>
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Signed<TxEip1559>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Signed<TxEip1559>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T> Hashable for Signed<T>where
T: RlpEcdsaEncodableTx,
impl<T> Hashable for Signed<T>where
T: RlpEcdsaEncodableTx,
fn hash_custom(&self) -> FixedBytes<32>
Source§impl<T> Merkleizable for Signed<T>where
T: Merkleizable + Hashable,
impl<T> Merkleizable for Signed<T>where
T: Merkleizable + Hashable,
fn append_leaves(&self, builder: &mut MerkleBuilder)
fn leaves(&self) -> Vec<(String, FixedBytes<32>)>
fn to_merkle_tree(&self) -> StandardMerkleTree
fn generate_proof<T>(&self, prefix: &str, item: &T) -> Option<MerkleProof>where
T: ToLeaf,
fn generate_proofs<T>(
&self,
prefix: &str,
items: &[T],
) -> Vec<Option<MerkleProof>>where
T: Merkleizable,
fn generate_multi_proof<T>(
&self,
prefix: &str,
item: &T,
) -> Option<(Vec<FixedBytes<32>>, MerkleMultiProof)>where
T: Merkleizable,
fn generate_multi_proofs<T>(
&self,
prefix: &str,
items: &[T],
) -> Option<(Vec<FixedBytes<32>>, MerkleMultiProof)>where
T: Merkleizable,
Source§impl Serialize for Signed<TxEip1559>
impl Serialize for Signed<TxEip1559>
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> Eq for Signed<T>where
T: Eq,
impl<T> StructuralPartialEq for Signed<T>
Auto Trait Implementations§
impl<T> !Freeze for Signed<T>
impl<T> RefUnwindSafe for Signed<T>where
T: RefUnwindSafe,
impl<T> Send for Signed<T>where
T: Send,
impl<T> Sync for Signed<T>where
T: Sync,
impl<T> Unpin for Signed<T>where
T: Unpin,
impl<T> UnwindSafe for Signed<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§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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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