Struct dusk_jubjub::ExtendedPoint

source ·
pub struct ExtendedPoint { /* private fields */ }
Expand description

This represents an extended point (U, V, Z, T1, T2) with Z nonzero, corresponding to the affine point (U/Z, V/Z). We always have T1 * T2 = UV/Z.

You can do the following things with a point in this form:

  • Convert it into a point in the affine form.
  • Add it to an ExtendedPoint, AffineNielsPoint or ExtendedNielsPoint.
  • Double it using double().
  • Compare it with another extended point using PartialEq or ct_eq().

Implementations§

source§

impl ExtendedPoint

source

pub const fn from_affine(affine: JubJubAffine) -> Self

Constructs an extended point (with Z = 1) from an affine point using the map (x, y) => (x, y, 1, x, y).

source

pub const fn from_raw_unchecked( u: BlsScalar, v: BlsScalar, z: BlsScalar, t1: BlsScalar, t2: BlsScalar ) -> Self

Constructs an extended point from its raw internals

source

pub const fn get_u(&self) -> BlsScalar

Returns the u-coordinate of this point.

source

pub const fn get_v(&self) -> BlsScalar

Returns the v-coordinate of this point.

source

pub const fn get_z(&self) -> BlsScalar

Returns the z-coordinate of this point.

source

pub const fn get_t1(&self) -> BlsScalar

Returns the t1-coordinate of this point.

source

pub const fn get_t2(&self) -> BlsScalar

Returns the t2-coordinate of this point.

source

pub fn to_hash_inputs(&self) -> [BlsScalar; 2]

Returns two scalars suitable for hashing that represent the Extended Point.

source

pub fn hash_to_point(input: &[u8]) -> Self

Hash an arbitrary slice of bytes to a point on the elliptic curve and in the prime order subgroup.

This algorithm uses rejection sampling to hash to a point on the curve: The input together with a counter are hashed into an array of 32 bytes. If the hash is a canonical representation of a point on the curve and a member of the prime-order subgroup, we return it. If not, we increment the counter, hash and try to de-serialize again. This is the same algorithm we used to generate GENERATOR_NUMS as outlined here.

Note: This implementation of hash_to_point is not constant time, in the long run we want to implement an algorithm outlined here, but we start with this implementation in order to be able to use the API already.

source

pub fn is_on_curve(&self) -> Choice

Returns true if this point is on the curve. This should always return true unless an “unchecked” API was used.

source§

impl ExtendedPoint

source

pub const fn identity() -> Self

Constructs an extended point from the neutral element (0, 1).

source

pub fn is_identity(&self) -> Choice

Determines if this point is the identity.

source

pub fn is_small_order(&self) -> Choice

Determines if this point is of small order.

source

pub fn is_torsion_free(&self) -> Choice

Determines if this point is torsion free and so is contained in the prime order subgroup.

source

pub fn is_prime_order(&self) -> Choice

Determines if this point is prime order, or in other words that the smallest scalar multiplied by this point that produces the identity is r. This is equivalent to checking that the point is both torsion free and not the identity.

source

pub fn mul_by_cofactor(&self) -> ExtendedPoint

Multiplies this element by the cofactor 8.

source

pub fn to_niels(&self) -> ExtendedNielsPoint

Performs a pre-processing step that produces an ExtendedNielsPoint for use in multiple additions.

source

pub fn double(&self) -> ExtendedPoint

Computes the doubling of a point more efficiently than a point can be added to itself.

Trait Implementations§

source§

impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, other: &'b AffineNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> Add<&'b AffineNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: &'b AffineNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a, 'b> Add<&'b AffinePoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, other: &'b AffinePoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> Add<&'b AffinePoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: &'b AffinePoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a, 'b> Add<&'b ExtendedNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, other: &'b ExtendedNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> Add<&'b ExtendedNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: &'b ExtendedNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a, 'b> Add<&'b ExtendedPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, other: &'b ExtendedPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> Add<&'b ExtendedPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: &'b ExtendedPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a, 'b> Add<&'b SubgroupPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, other: &'b SubgroupPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> Add<&'b SubgroupPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: &'b SubgroupPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a> Add<AffineNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: AffineNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl Add<AffineNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: AffineNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a> Add<AffinePoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: AffinePoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl Add<AffinePoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: AffinePoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a> Add<ExtendedNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: ExtendedNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl Add<ExtendedNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: ExtendedNielsPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a> Add<ExtendedPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: ExtendedPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'a> Add<SubgroupPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: SubgroupPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl Add<SubgroupPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: SubgroupPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl Add for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the + operator.
source§

fn add(self, rhs: ExtendedPoint) -> ExtendedPoint

Performs the + operation. Read more
source§

impl<'b> AddAssign<&'b AffineNielsPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: &'b AffineNielsPoint)

Performs the += operation. Read more
source§

impl<'b> AddAssign<&'b AffinePoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: &'b AffinePoint)

Performs the += operation. Read more
source§

impl<'b> AddAssign<&'b ExtendedNielsPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: &'b ExtendedNielsPoint)

Performs the += operation. Read more
source§

impl<'b> AddAssign<&'b ExtendedPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: &'b ExtendedPoint)

Performs the += operation. Read more
source§

impl<'b> AddAssign<&'b SubgroupPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: &'b SubgroupPoint)

Performs the += operation. Read more
source§

impl AddAssign<AffineNielsPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: AffineNielsPoint)

Performs the += operation. Read more
source§

impl AddAssign<AffinePoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: AffinePoint)

Performs the += operation. Read more
source§

impl AddAssign<ExtendedNielsPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: ExtendedNielsPoint)

Performs the += operation. Read more
source§

impl AddAssign<SubgroupPoint> for ExtendedPoint

source§

fn add_assign(&mut self, rhs: SubgroupPoint)

Performs the += operation. Read more
source§

impl AddAssign for ExtendedPoint

source§

fn add_assign(&mut self, rhs: ExtendedPoint)

Performs the += operation. Read more
source§

impl Clone for ExtendedPoint

source§

fn clone(&self) -> ExtendedPoint

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 CofactorCurve for ExtendedPoint

source§

impl CofactorGroup for ExtendedPoint

§

type Subgroup = SubgroupPoint

The large prime-order subgroup in which cryptographic operations are performed. If Self implements PrimeGroup, then Self::Subgroup may be Self.
source§

fn clear_cofactor(&self) -> Self::Subgroup

Maps self to the prime-order subgroup by multiplying this element by some k-multiple of the cofactor. Read more
source§

fn into_subgroup(self) -> CtOption<Self::Subgroup>

Returns self if it is contained in the prime-order subgroup. Read more
source§

fn is_torsion_free(&self) -> Choice

Determines if this element is “torsion free”, i.e., is contained in the prime-order subgroup. Read more
source§

fn is_small_order(&self) -> Choice

Determines if this element is of small order. Read more
source§

impl ConditionallySelectable for ExtendedPoint

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 ExtendedPoint

source§

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

Determine if two items are equal. Read more
source§

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

Determine if two items are NOT equal. Read more
source§

impl Curve for ExtendedPoint

§

type AffineRepr = AffinePoint

The affine representation for this elliptic curve.
source§

fn batch_normalize(p: &[Self], q: &mut [Self::AffineRepr])

Converts a batch of projective elements into affine elements. This function will panic if p.len() != q.len().
source§

fn to_affine(&self) -> Self::AffineRepr

Converts this element into its affine representation.
source§

impl Debug for ExtendedPoint

source§

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

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

impl Default for ExtendedPoint

source§

fn default() -> ExtendedPoint

Returns the identity.

source§

impl Display for ExtendedPoint

source§

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

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

impl<'a> From<&'a ExtendedPoint> for AffinePoint

source§

fn from(extended: &'a ExtendedPoint) -> AffinePoint

Constructs an affine point from an extended point using the map (U, V, Z, T1, T2) => (U/Z, V/Z) as Z is always nonzero. This requires a field inversion and so it is recommended to perform these in a batch using batch_normalize instead.

source§

impl<'a> From<&'a SubgroupPoint> for &'a ExtendedPoint

source§

fn from(val: &'a SubgroupPoint) -> &'a ExtendedPoint

Converts to this type from the input type.
source§

impl From<AffinePoint> for ExtendedPoint

source§

fn from(affine: AffinePoint) -> ExtendedPoint

Constructs an extended point (with Z = 1) from an affine point using the map (u, v) => (u, v, 1, u, v).

source§

impl From<ExtendedPoint> for AffinePoint

source§

fn from(extended: ExtendedPoint) -> AffinePoint

Converts to this type from the input type.
source§

impl From<SubgroupPoint> for ExtendedPoint

source§

fn from(val: SubgroupPoint) -> ExtendedPoint

Converts to this type from the input type.
source§

impl Group for ExtendedPoint

§

type Scalar = Fr

Scalars modulo the order of this group’s scalar field.
source§

fn random(rng: impl RngCore) -> Self

Returns an element chosen uniformly at random from the non-identity elements of this group. Read more
source§

fn identity() -> Self

Returns the additive identity, also known as the “neutral element”.
source§

fn generator() -> Self

Returns a fixed generator of the prime-order subgroup.
source§

fn is_identity(&self) -> Choice

Determines if this point is the identity.
source§

fn double(&self) -> Self

Doubles this element.
source§

impl GroupEncoding for ExtendedPoint

§

type Repr = [u8; 32]

The encoding of group elements. Read more
source§

fn from_bytes(bytes: &Self::Repr) -> CtOption<Self>

Attempts to deserialize a group element from its encoding.
source§

fn from_bytes_unchecked(bytes: &Self::Repr) -> CtOption<Self>

Attempts to deserialize a group element, not checking if the element is valid. Read more
source§

fn to_bytes(&self) -> Self::Repr

Converts this element into its byte encoding. This may or may not support encoding the identity.
source§

impl<'a, 'b> Mul<&'b Fr> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the * operator.
source§

fn mul(self, other: &'b Fr) -> ExtendedPoint

Performs the * operation. Read more
source§

impl<'b> Mul<&'b Fr> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &'b Fr) -> ExtendedPoint

Performs the * operation. Read more
source§

impl<'a> Mul<Fr> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Fr) -> ExtendedPoint

Performs the * operation. Read more
source§

impl Mul<Fr> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Fr) -> ExtendedPoint

Performs the * operation. Read more
source§

impl<'b> MulAssign<&'b Fr> for ExtendedPoint

source§

fn mul_assign(&mut self, rhs: &'b Fr)

Performs the *= operation. Read more
source§

impl MulAssign<Fr> for ExtendedPoint

source§

fn mul_assign(&mut self, rhs: Fr)

Performs the *= operation. Read more
source§

impl Neg for ExtendedPoint

source§

fn neg(self) -> ExtendedPoint

Computes the negation of a point P = (U, V, Z, T) as -P = (-U, V, Z, -T1, T2). The choice of T1 is made without loss of generality.

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

impl PartialEq for ExtendedPoint

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<'a, 'b> Sub<&'b AffineNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, other: &'b AffineNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> Sub<&'b AffineNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &'b AffineNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a, 'b> Sub<&'b AffinePoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, other: &'b AffinePoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> Sub<&'b AffinePoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &'b AffinePoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a, 'b> Sub<&'b ExtendedNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, other: &'b ExtendedNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> Sub<&'b ExtendedNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &'b ExtendedNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a, 'b> Sub<&'b ExtendedPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, other: &'b ExtendedPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> Sub<&'b ExtendedPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &'b ExtendedPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a, 'b> Sub<&'b SubgroupPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, other: &'b SubgroupPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> Sub<&'b SubgroupPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &'b SubgroupPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a> Sub<AffineNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: AffineNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl Sub<AffineNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: AffineNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a> Sub<AffinePoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: AffinePoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl Sub<AffinePoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: AffinePoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a> Sub<ExtendedNielsPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: ExtendedNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl Sub<ExtendedNielsPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: ExtendedNielsPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a> Sub<ExtendedPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: ExtendedPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'a> Sub<SubgroupPoint> for &'a ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: SubgroupPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl Sub<SubgroupPoint> for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: SubgroupPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl Sub for ExtendedPoint

§

type Output = ExtendedPoint

The resulting type after applying the - operator.
source§

fn sub(self, rhs: ExtendedPoint) -> ExtendedPoint

Performs the - operation. Read more
source§

impl<'b> SubAssign<&'b AffineNielsPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: &'b AffineNielsPoint)

Performs the -= operation. Read more
source§

impl<'b> SubAssign<&'b AffinePoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: &'b AffinePoint)

Performs the -= operation. Read more
source§

impl<'b> SubAssign<&'b ExtendedNielsPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: &'b ExtendedNielsPoint)

Performs the -= operation. Read more
source§

impl<'b> SubAssign<&'b ExtendedPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: &'b ExtendedPoint)

Performs the -= operation. Read more
source§

impl<'b> SubAssign<&'b SubgroupPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: &'b SubgroupPoint)

Performs the -= operation. Read more
source§

impl SubAssign<AffineNielsPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: AffineNielsPoint)

Performs the -= operation. Read more
source§

impl SubAssign<AffinePoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: AffinePoint)

Performs the -= operation. Read more
source§

impl SubAssign<ExtendedNielsPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: ExtendedNielsPoint)

Performs the -= operation. Read more
source§

impl SubAssign<SubgroupPoint> for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: SubgroupPoint)

Performs the -= operation. Read more
source§

impl SubAssign for ExtendedPoint

source§

fn sub_assign(&mut self, rhs: ExtendedPoint)

Performs the -= operation. Read more
source§

impl<T> Sum<T> for ExtendedPoint

source§

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

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

impl WnafGroup for ExtendedPoint

source§

fn recommended_wnaf_for_num_scalars(num_scalars: usize) -> usize

Recommends a wNAF window size given the number of scalars you intend to multiply a base by. Always returns a number between 2 and 22, inclusive.
source§

impl Copy for ExtendedPoint

source§

impl Eq for ExtendedPoint

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

source§

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

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

impl<T> FmtForward for T

source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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> Pipe for T
where T: ?Sized,

source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where 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> Tap for T

source§

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

Immutable access to a value. Read more
source§

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

Mutable access to a value. Read more
source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where 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 T
where 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
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> TryConv for T

source§

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 T
where U: Into<T>,

§

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>,

§

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<T, Rhs, Output> GroupOps<Rhs, Output> for T
where T: Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> + AddAssign<Rhs> + SubAssign<Rhs>,

source§

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

source§

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

source§

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