alloy_primitives

Enum Parity

Source
pub enum Parity {
    Eip155(u64),
    NonEip155(bool),
    Parity(bool),
}
๐Ÿ‘ŽDeprecated since 0.8.15: see https://github.com/alloy-rs/core/pull/776
Expand description

The parity of the signature, stored as either a V value (which may include a chain id), or the y-parity.

Variantsยง

ยง

Eip155(u64)

๐Ÿ‘ŽDeprecated since 0.8.15: see https://github.com/alloy-rs/core/pull/776

Explicit V value. May be EIP-155 modified.

ยง

NonEip155(bool)

๐Ÿ‘ŽDeprecated since 0.8.15: see https://github.com/alloy-rs/core/pull/776

Non-EIP155. 27 or 28.

ยง

Parity(bool)

๐Ÿ‘ŽDeprecated since 0.8.15: see https://github.com/alloy-rs/core/pull/776

Parity flag. True for odd.

Implementationsยง

Sourceยง

impl Parity

Source

pub const fn chain_id(&self) -> Option<ChainId>

Returns the chain ID associated with the V value, if this signature is replay-protected by EIP-155.

Source

pub const fn has_eip155_value(&self) -> bool

Returns true if the signature is replay-protected by EIP-155.

This is true if the V value is 35 or greater. Values less than 35 are either not replay protected (27/28), or are invalid.

Source

pub const fn y_parity(&self) -> bool

Return the y-parity as a boolean.

Source

pub const fn y_parity_byte(&self) -> u8

Return the y-parity as 0 or 1

Source

pub const fn y_parity_byte_non_eip155(&self) -> Option<u8>

Return the y-parity byte as 27 or 28, in the case of a non-EIP155 signature.

Source

pub const fn to_u64(&self) -> u64

Return the corresponding u64 V value.

Source

pub const fn inverted(&self) -> Self

Inverts the parity.

Source

pub const fn strip_chain_id(&self) -> Self

Converts an EIP-155 V value to a non-EIP-155 V value.

This is a nop for non-EIP-155 values.

Source

pub const fn with_chain_id(self, chain_id: ChainId) -> Self

Applies EIP-155 with the given chain ID.

Source

pub const fn recid(&self) -> RecoveryId

Determines the recovery ID.

Source

pub const fn to_parity_bool(self) -> Self

Convert to a parity bool, dropping any V information.

Trait Implementationsยง

Sourceยง

impl Clone for Parity

Sourceยง

fn clone(&self) -> Parity

Returns a copy of the value. Read more
1.0.0 ยท Sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Sourceยง

impl Debug for Parity

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Sourceยง

impl Decodable for Parity

Sourceยง

fn decode(buf: &mut &[u8]) -> Result<Self, Error>

Decodes the blob into the appropriate type. buf must be advanced past the decoded object.
Sourceยง

impl Default for Parity

Sourceยง

fn default() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl Encodable for Parity

Sourceยง

fn encode(&self, out: &mut dyn BufMut)

Encodes the type into the out buffer.
Sourceยง

fn length(&self) -> usize

Returns the length of the encoding of this type in bytes. Read more
Sourceยง

impl From<RecoveryId> for Parity

Sourceยง

fn from(value: RecoveryId) -> Self

Converts to this type from the input type.
Sourceยง

impl From<Uint<1, 1>> for Parity

Sourceยง

fn from(value: Uint<1, 1>) -> Self

Converts to this type from the input type.
Sourceยง

impl From<bool> for Parity

Sourceยง

fn from(value: bool) -> Self

Converts to this type from the input type.
Sourceยง

impl Hash for Parity

Sourceยง

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 ยท Sourceยง

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Sourceยง

impl PartialEq for Parity

Sourceยง

fn eq(&self, other: &Parity) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท Sourceยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl TryFrom<Uint<64, 1>> for Parity

Sourceยง

type Error = <Parity as TryFrom<u64>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U64) -> Result<Self, Self::Error>

Performs the conversion.
Sourceยง

impl TryFrom<u64> for Parity

Sourceยง

type Error = SignatureError

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: u64) -> Result<Self, Self::Error>

Performs the conversion.
Sourceยง

impl Copy for Parity

Sourceยง

impl Eq for Parity

Sourceยง

impl StructuralPartialEq for Parity

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> CloneToUninit for T
where T: Clone,

Sourceยง

unsafe fn clone_to_uninit(&self, dst: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Sourceยง

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Sourceยง

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
Sourceยง

impl<T> ToOwned for T
where T: Clone,

Sourceยง

type Owned = T

The resulting type after obtaining ownership.
Sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.