Struct p256::Scalar

source ·
pub struct Scalar(_);
Available on crate feature arithmetic only.
Expand description

Scalars are elements in the finite field modulo n.

Trait impls

Much of the important functionality of scalars is provided by traits from the ff crate, which is re-exported as p256::elliptic_curve::ff:

  • Field - represents elements of finite fields and provides:
  • PrimeField - represents elements of prime fields and provides:
    • from_repr/to_repr for converting field elements from/to big integers.
    • multiplicative_generator and root_of_unity constants.
  • PrimeFieldBits - operations over field elements represented as bits (requires bits feature)

Please see the documentation for the relevant traits for more information.

serde support

When the serde feature of this crate is enabled, the Serialize and Deserialize traits are impl’d for this type.

The serialization is a fixed-width big endian encoding. When used with textual formats, the binary data is encoded as hexadecimal.

Implementations§

source§

impl Scalar

source

pub const ZERO: Self = _

Zero scalar.

source

pub const ONE: Self = _

Multiplicative identity.

source

pub fn to_bytes(&self) -> FieldBytes

Returns the SEC1 encoding of this scalar.

source

pub const fn add(&self, rhs: &Self) -> Self

Returns self + rhs mod n

source

pub const fn double(&self) -> Self

Returns 2*self.

source

pub const fn sub(&self, rhs: &Self) -> Self

Returns self - rhs mod n.

source

pub const fn multiply(&self, rhs: &Self) -> Self

Returns self * rhs mod n

source

pub const fn square(&self) -> Self

Returns self * self mod p

source

pub const fn shr_vartime(&self, shift: usize) -> Scalar

Right shifts the scalar.

Note: not constant-time with respect to the shift parameter.

source

pub fn invert(&self) -> CtOption<Self>

Returns the multiplicative inverse of self, if self is non-zero

source

pub const fn pow_vartime(&self, exp: &[u64]) -> Self

Exponentiates self by exp, where exp is a little-endian order integer exponent.

source

pub fn is_odd(&self) -> Choice

Is integer representing equivalence class odd?

source

pub fn is_even(&self) -> Choice

Is integer representing equivalence class even?

Trait Implementations§

source§

impl Add<&Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

fn add(self, other: &Scalar) -> Scalar

Performs the + operation. Read more
source§

impl Add<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

fn add(self, other: &Scalar) -> Scalar

Performs the + operation. Read more
source§

impl Add<Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the + operator.
source§

fn add(self, other: Scalar) -> Scalar

Performs the + operation. Read more
source§

impl AddAssign<&Scalar> for Scalar

source§

fn add_assign(&mut self, rhs: &Scalar)

Performs the += operation. Read more
source§

impl AddAssign<Scalar> for Scalar

source§

fn add_assign(&mut self, rhs: Scalar)

Performs the += operation. Read more
source§

impl AsRef<Scalar> for Scalar

source§

fn as_ref(&self) -> &Scalar

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for Scalar

source§

fn clone(&self) -> Scalar

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 ConditionallySelectable for Scalar

source§

fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self

Select a or b according to choice. Read more
source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
source§

impl ConstantTimeEq for Scalar

source§

fn ct_eq(&self, other: &Self) -> Choice

Determine if two items are equal. Read more
source§

impl Debug for Scalar

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for Scalar

source§

fn default() -> Scalar

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Scalar

Available on crate feature serde only.
source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Field for Scalar

source§

fn sqrt(&self) -> CtOption<Self>

Tonelli-Shank’s algorithm for q mod 16 = 1 https://eprint.iacr.org/2012/685.pdf (page 12, algorithm 5)

source§

const ZERO: Self = Self::ZERO

The zero element of the field, the additive identity.
source§

const ONE: Self = Self::ONE

The one element of the field, the multiplicative identity.
source§

fn random(rng: impl RngCore) -> Self

Returns an element chosen uniformly at random using a user-provided RNG.
source§

fn square(&self) -> Self

Squares this element.
source§

fn double(&self) -> Self

Doubles this element.
source§

fn invert(&self) -> CtOption<Self>

Computes the multiplicative inverse of this element, failing if the element is zero.
source§

fn sqrt_ratio(num: &Self, div: &Self) -> (Choice, Self)

Computes: Read more
§

fn is_zero(&self) -> Choice

Returns true iff this element is zero.
§

fn is_zero_vartime(&self) -> bool

Returns true iff this element is zero. Read more
§

fn cube(&self) -> Self

Cubes this element.
§

fn sqrt_alt(&self) -> (Choice, Self)

Equivalent to Self::sqrt_ratio(self, one()). Read more
§

fn pow<S>(&self, exp: S) -> Selfwhere S: AsRef<[u64]>,

Exponentiates self by exp, where exp is a little-endian order integer exponent. Read more
§

fn pow_vartime<S>(&self, exp: S) -> Selfwhere S: AsRef<[u64]>,

Exponentiates self by exp, where exp is a little-endian order integer exponent. Read more
source§

impl From<&Scalar> for FieldBytes

source§

fn from(scalar: &Scalar) -> Self

Converts to this type from the input type.
source§

impl From<&Scalar> for ScalarBits

Available on crate feature bits only.
source§

fn from(scalar: &Scalar) -> ScalarBits

Converts to this type from the input type.
source§

impl From<&Scalar> for ScalarPrimitive<NistP256>

source§

fn from(scalar: &Scalar) -> ScalarPrimitive<NistP256>

Converts to this type from the input type.
source§

impl From<&Scalar> for U256

source§

fn from(scalar: &Scalar) -> U256

Converts to this type from the input type.
source§

impl From<&ScalarPrimitive<NistP256>> for Scalar

source§

fn from(scalar: &ScalarPrimitive<NistP256>) -> Scalar

Converts to this type from the input type.
source§

impl From<&SecretKey<NistP256>> for Scalar

source§

fn from(secret_key: &SecretKey) -> Scalar

Converts to this type from the input type.
source§

impl From<Scalar> for FieldBytes

source§

fn from(scalar: Scalar) -> Self

Converts to this type from the input type.
source§

impl From<Scalar> for ScalarPrimitive<NistP256>

source§

fn from(scalar: Scalar) -> ScalarPrimitive<NistP256>

Converts to this type from the input type.
source§

impl From<Scalar> for U256

source§

fn from(scalar: Scalar) -> U256

Converts to this type from the input type.
source§

impl From<ScalarPrimitive<NistP256>> for Scalar

source§

fn from(scalar: ScalarPrimitive<NistP256>) -> Scalar

Converts to this type from the input type.
source§

impl From<u128> for Scalar

source§

fn from(k: u128) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Scalar

source§

fn from(k: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Scalar

source§

fn from(k: u64) -> Self

Converts to this type from the input type.
source§

impl FromOkm for Scalar

Available on crate feature hash2curve only.
§

type Length = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>

The number of bytes needed to convert to a field element.
source§

fn from_okm(data: &GenericArray<u8, Self::Length>) -> Self

Convert a byte sequence into a field element.
source§

impl FromUintUnchecked for Scalar

§

type Uint = Uint<crypto_bigint::::uint::U256::{constant#0}>

Unsigned integer type (i.e. Curve::Uint)
source§

fn from_uint_unchecked(uint: Self::Uint) -> Self

Instantiate scalar from an unsigned integer without checking whether the value overflows the field modulus. Read more
source§

impl Invert for Scalar

source§

fn invert_vartime(&self) -> CtOption<Self>

Fast variable-time inversion using Stein’s algorithm.

Returns none if the scalar is zero.

https://link.springer.com/article/10.1007/s13389-016-0135-4

⚠️ WARNING!

This method should not be used with (unblinded) secret scalars, as its variable-time operation can potentially leak secrets through sidechannels.

§

type Output = CtOption<Scalar>

Field element type
source§

fn invert(&self) -> CtOption<Self>

Invert a field element.
source§

impl IsHigh for Scalar

source§

fn is_high(&self) -> Choice

Is this scalar greater than or equal to n / 2?
source§

impl Mul<&Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

fn mul(self, other: &Scalar) -> Scalar

Performs the * operation. Read more
source§

impl Mul<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

fn mul(self, other: &Scalar) -> Scalar

Performs the * operation. Read more
source§

impl Mul<Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the * operator.
source§

fn mul(self, other: Scalar) -> Scalar

Performs the * operation. Read more
source§

impl MulAssign<&Scalar> for Scalar

source§

fn mul_assign(&mut self, rhs: &Scalar)

Performs the *= operation. Read more
source§

impl MulAssign<Scalar> for Scalar

source§

fn mul_assign(&mut self, rhs: Scalar)

Performs the *= operation. Read more
source§

impl<'a> Neg for &'a Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn neg(self) -> Scalar

Performs the unary - operation. Read more
source§

impl Neg for Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn neg(self) -> Scalar

Performs the unary - operation. Read more
source§

impl Ord for Scalar

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<Scalar> for Scalar

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Scalar> for Scalar

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl PrimeField for Scalar

source§

fn from_repr(bytes: FieldBytes) -> CtOption<Self>

Attempts to parse the given byte array as an SEC1-encoded scalar.

Returns None if the byte array does not contain a big-endian integer in the range [0, p).

§

type Repr = GenericArray<u8, <NistP256 as Curve>::FieldBytesSize>

The prime field can be converted back and forth into this binary representation.
source§

const MODULUS: &'static str = ORDER_HEX

Modulus of the field written as a string for debugging purposes. Read more
source§

const NUM_BITS: u32 = 256u32

How many bits are needed to represent an element of this field.
source§

const CAPACITY: u32 = 255u32

How many bits of information can be reliably stored in the field element. Read more
source§

const TWO_INV: Self = _

Inverse of $2$ in the field.
source§

const MULTIPLICATIVE_GENERATOR: Self = _

A fixed multiplicative generator of modulus - 1 order. This element must also be a quadratic nonresidue. Read more
source§

const S: u32 = 4u32

An integer s satisfying the equation 2^s * t = modulus - 1 with t odd. Read more
source§

const ROOT_OF_UNITY: Self = _

The 2^s root of unity. Read more
source§

const ROOT_OF_UNITY_INV: Self = _

Inverse of [Self::ROOT_OF_UNITY].
source§

const DELTA: Self = _

Generator of the t-order multiplicative subgroup. Read more
source§

fn to_repr(&self) -> FieldBytes

Converts an element of the prime field into the standard byte representation for this field. Read more
source§

fn is_odd(&self) -> Choice

Returns true iff this element is odd.
§

fn from_str_vartime(s: &str) -> Option<Self>

Interpret a string of numbers as a (congruent) prime field element. Does not accept unnecessary leading zeroes or a blank string. Read more
§

fn from_u128(v: u128) -> Self

Obtains a field element congruent to the integer v. Read more
§

fn from_repr_vartime(repr: Self::Repr) -> Option<Self>

Attempts to convert a byte representation of a field element into an element of this prime field, failing if the input is not canonical (is not smaller than the field’s modulus). Read more
§

fn is_even(&self) -> Choice

Returns true iff this element is even.
source§

impl PrimeFieldBits for Scalar

Available on crate feature bits only.
§

type ReprBits = [u64; 4]

The backing store for a bit representation of a prime field element.
source§

fn to_le_bits(&self) -> ScalarBits

Converts an element of the prime field into a little-endian sequence of bits.
source§

fn char_le_bits() -> ScalarBits

Returns the bits of the field characteristic (the modulus) in little-endian order.
source§

impl<'a> Product<&'a Scalar> for Scalar

source§

fn product<I: Iterator<Item = &'a Scalar>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Product<Scalar> for Scalar

source§

fn product<I: Iterator<Item = Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Reduce<Uint<crypto_bigint::::uint::U256::{constant#0}>> for Scalar

§

type Bytes = GenericArray<u8, <NistP256 as Curve>::FieldBytesSize>

Bytes used as input to Reduce::reduce_bytes.
source§

fn reduce(w: U256) -> Self

Perform a modular reduction, returning a field element.
source§

fn reduce_bytes(bytes: &FieldBytes) -> Self

Interpret the given bytes as an integer and perform a modular reduction.
source§

impl ReduceNonZero<Uint<crypto_bigint::::uint::U256::{constant#0}>> for Scalar

source§

fn reduce_nonzero(w: U256) -> Self

Perform a modular reduction, returning a field element.
source§

fn reduce_nonzero_bytes(bytes: &FieldBytes) -> Self

Interpret the given bytes as an integer and perform a modular reduction to a non-zero output.
source§

impl Serialize for Scalar

Available on crate feature serde only.
source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Shr<usize> for &Scalar

§

type Output = Scalar

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
source§

impl Shr<usize> for Scalar

§

type Output = Scalar

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: usize) -> Self::Output

Performs the >> operation. Read more
source§

impl ShrAssign<usize> for Scalar

source§

fn shr_assign(&mut self, rhs: usize)

Performs the >>= operation. Read more
source§

impl SignPrimitive<NistP256> for Scalar

Available on crate features ecdsa-core and ecdsa only.
source§

fn try_sign_prehashed<K>( &self, k: K, z: &GenericArray<u8, <C as Curve>::FieldBytesSize> ) -> Result<(Signature<C>, Option<RecoveryId>), Error>where K: AsRef<Self> + Invert<Output = CtOption<Self>>,

Try to sign the prehashed message. Read more
source§

fn try_sign_prehashed_rfc6979<D>( &self, z: &GenericArray<u8, <C as Curve>::FieldBytesSize>, ad: &[u8] ) -> Result<(Signature<C>, Option<RecoveryId>), Error>where Self: From<ScalarPrimitive<C>> + Invert<Output = CtOption<Self>>, D: Digest<OutputSize = <C as Curve>::FieldBytesSize> + BlockSizeUser + FixedOutput + FixedOutputReset,

Available on crate feature rfc6979 only.
Try to sign the given message digest deterministically using the method described in RFC6979 for computing ECDSA ephemeral scalar k. Read more
source§

impl Sub<&Scalar> for &Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn sub(self, other: &Scalar) -> Scalar

Performs the - operation. Read more
source§

impl Sub<&Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn sub(self, other: &Scalar) -> Scalar

Performs the - operation. Read more
source§

impl Sub<Scalar> for Scalar

§

type Output = Scalar

The resulting type after applying the - operator.
source§

fn sub(self, other: Scalar) -> Scalar

Performs the - operation. Read more
source§

impl SubAssign<&Scalar> for Scalar

source§

fn sub_assign(&mut self, rhs: &Scalar)

Performs the -= operation. Read more
source§

impl SubAssign<Scalar> for Scalar

source§

fn sub_assign(&mut self, rhs: Scalar)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a Scalar> for Scalar

source§

fn sum<I: Iterator<Item = &'a Scalar>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Sum<Scalar> for Scalar

source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Copy for Scalar

source§

impl DefaultIsZeroes for Scalar

source§

impl Eq for Scalar

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> ConditionallyNegatable for Twhere T: ConditionallySelectable, &'a T: for<'a> Neg<Output = T>,

source§

fn conditional_negate(&mut self, choice: Choice)

Negate self if choice == Choice(1); otherwise, leave it unchanged. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> Twhere Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.

§

impl<T> Pipe for Twhere T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> Rwhere Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> Rwhere Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for Twhere T: Clone,

§

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
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

impl<Z> Zeroize for Zwhere Z: DefaultIsZeroes,

§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

§

impl<T, Rhs, Output> GroupOps<Rhs, Output> for Twhere T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

§

impl<T, Rhs, Output> GroupOpsOwned<Rhs, Output> for Twhere T: for<'r> GroupOps<&'r Rhs, Output>,

§

impl<T, Rhs, Output> ScalarMul<Rhs, Output> for Twhere T: Mul<Rhs, Output = Output> + MulAssign<Rhs>,

§

impl<T, Rhs, Output> ScalarMulOwned<Rhs, Output> for Twhere T: for<'r> ScalarMul<&'r Rhs, Output>,