Struct test_dalek_docs::backend::serial::curve_models::AffineNielsPoint
source · pub struct AffineNielsPoint {
pub y_plus_x: FieldElement51,
pub y_minus_x: FieldElement51,
pub xy2d: FieldElement51,
}
Expand description
A pre-computed point in the affine model for the curve, represented as \((y+x, y-x, 2dxy)\) in “Niels coordinates”.
More details on the relationships between the different curve models can be found in the module-level documentation.
Fields
y_plus_x: FieldElement51
y_minus_x: FieldElement51
xy2d: FieldElement51
Trait Implementations
sourceimpl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
type Output = CompletedPoint
type Output = CompletedPoint
The resulting type after applying the
+
operator.sourcefn add(self, other: &'b AffineNielsPoint) -> CompletedPoint
fn add(self, other: &'b AffineNielsPoint) -> CompletedPoint
Performs the
+
operation. Read moresourceimpl Clone for AffineNielsPoint
impl Clone for AffineNielsPoint
sourcefn clone(&self) -> AffineNielsPoint
fn clone(&self) -> AffineNielsPoint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl ConditionallySelectable for AffineNielsPoint
impl ConditionallySelectable for AffineNielsPoint
sourcefn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
sourcefn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
sourceimpl Debug for AffineNielsPoint
impl Debug for AffineNielsPoint
sourceimpl Default for AffineNielsPoint
impl Default for AffineNielsPoint
sourcefn default() -> AffineNielsPoint
fn default() -> AffineNielsPoint
Returns the “default value” for a type. Read more
sourceimpl Identity for AffineNielsPoint
impl Identity for AffineNielsPoint
sourcefn identity() -> AffineNielsPoint
fn identity() -> AffineNielsPoint
Returns the identity element of the curve.
Can be used as a constructor. Read more
sourceimpl<'a> Neg for &'a AffineNielsPoint
impl<'a> Neg for &'a AffineNielsPoint
type Output = AffineNielsPoint
type Output = AffineNielsPoint
The resulting type after applying the
-
operator.sourcefn neg(self) -> AffineNielsPoint
fn neg(self) -> AffineNielsPoint
Performs the unary
-
operation. Read moresourceimpl PartialEq<AffineNielsPoint> for AffineNielsPoint
impl PartialEq<AffineNielsPoint> for AffineNielsPoint
sourcefn eq(&self, other: &AffineNielsPoint) -> bool
fn eq(&self, other: &AffineNielsPoint) -> bool
sourceimpl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
type Output = CompletedPoint
type Output = CompletedPoint
The resulting type after applying the
-
operator.sourcefn sub(self, other: &'b AffineNielsPoint) -> CompletedPoint
fn sub(self, other: &'b AffineNielsPoint) -> CompletedPoint
Performs the
-
operation. Read moresourceimpl Zeroize for AffineNielsPoint
impl Zeroize for AffineNielsPoint
impl Copy for AffineNielsPoint
impl Eq for AffineNielsPoint
impl StructuralEq for AffineNielsPoint
impl StructuralPartialEq for AffineNielsPoint
Auto Trait Implementations
impl RefUnwindSafe for AffineNielsPoint
impl Send for AffineNielsPoint
impl Sync for AffineNielsPoint
impl Unpin for AffineNielsPoint
impl UnwindSafe for AffineNielsPoint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more