pub struct Signature {
pub r: Uint<256, 4>,
pub s: Uint<256, 4>,
pub v: Uint<256, 4>,
pub y_parity: Option<Parity>,
}
Available on crate feature
eth
only.Expand description
Container type for all signature fields in RPC
Fields§
§r: Uint<256, 4>
The R field of the signature; the point on the curve.
s: Uint<256, 4>
The S field of the signature; the point on the curve.
v: Uint<256, 4>
For EIP-155, EIP-2930 and Blob transactions this is set to the parity (0 for even, 1 for odd) of the y-value of the secp256k1 signature.
For legacy transactions, this is the recovery id
See also https://ethereum.github.io/execution-apis/api-documentation/ and https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_gettransactionbyhash
y_parity: Option<Parity>
The y parity of the signature. This is only used for typed (non-legacy) transactions.
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Signature
impl<'arbitrary> Arbitrary<'arbitrary> for Signature
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Signature, Error>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Signature, Error>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Signature, Error>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Signature, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moresource§impl<'de> Deserialize<'de> for Signature
impl<'de> Deserialize<'de> for Signature
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Signature, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Signature, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for Signature
impl Serialize for Signature
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 Copy for Signature
impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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§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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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