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

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ยง

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

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> IntoEither for T

Sourceยง

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 more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ“˜
where F: FnOnce(&Self) -> bool,

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
Sourceยง

impl<T> Pointable for T

Sourceยง

const ALIGN: usize

The alignment of pointer.
Sourceยง

type Init = T

The type for initializers.
Sourceยง

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Sourceยง

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Sourceยง

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Sourceยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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

Layoutยง

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's โ€œType Layoutโ€ chapter for details on type layout guarantees.

Size: 16 bytes

Size for each variant:

  • Eip155: 15 bytes
  • NonEip155: 1 byte
  • Parity: 1 byte