alloy_primitives

Enum Parity

Source
pub enum Parity {
    Eip155(u64),
    NonEip155(bool),
    Parity(bool),
}
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)

Explicit V value. May be EIP-155 modified.

§

NonEip155(bool)

Non-EIP155. 27 or 28.

§

Parity(bool)

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

Available on crate feature k256 only.

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<'arbitrary> Arbitrary<'arbitrary> for Parity

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl Arbitrary for Parity

Source§

type Parameters = (<u64 as Arbitrary>::Parameters, <bool as Arbitrary>::Parameters, <bool as Arbitrary>::Parameters)

The type of parameters that arbitrary_with accepts for configuration of the generated Strategy. Parameters must implement Default.
Source§

type Strategy = TupleUnion<((u32, Arc<Map<<u64 as Arbitrary>::Strategy, fn(_: u64) -> Parity>>), (u32, Arc<Map<<bool as Arbitrary>::Strategy, fn(_: bool) -> Parity>>), (u32, Arc<Map<<bool as Arbitrary>::Strategy, fn(_: bool) -> Parity>>))>

The type of Strategy used to generate values of type Self.
Source§

fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more
Source§

fn arbitrary() -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). Read more
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

Available on crate feature rlp only.
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

Available on crate feature rlp only.
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

Available on crate feature k256 only.
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§

§

impl Freeze for Parity

§

impl RefUnwindSafe for Parity

§

impl Send for Parity

§

impl Sync for Parity

§

impl Unpin for Parity

§

impl UnwindSafe for Parity

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 T)

🔬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

Checks if this value is equivalent to the given key. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V