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: FieldElement51Trait Implementations§
Source§impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
Source§type Output = CompletedPoint
type Output = CompletedPoint
The resulting type after applying the
+ operator.Source§fn add(self, other: &'b AffineNielsPoint) -> CompletedPoint
fn add(self, other: &'b AffineNielsPoint) -> CompletedPoint
Performs the
+ operation. Read moreSource§impl Clone for AffineNielsPoint
impl Clone for AffineNielsPoint
Source§fn clone(&self) -> AffineNielsPoint
fn clone(&self) -> AffineNielsPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConditionallySelectable for AffineNielsPoint
impl ConditionallySelectable for AffineNielsPoint
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
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 moreSource§impl Debug for AffineNielsPoint
impl Debug for AffineNielsPoint
Source§impl Default for AffineNielsPoint
impl Default for AffineNielsPoint
Source§fn default() -> AffineNielsPoint
fn default() -> AffineNielsPoint
Returns the “default value” for a type. Read more
Source§impl Identity for AffineNielsPoint
impl Identity for AffineNielsPoint
Source§fn identity() -> AffineNielsPoint
fn identity() -> AffineNielsPoint
Returns the identity element of the curve.
Can be used as a constructor.
Source§impl<'a> Neg for &'a AffineNielsPoint
impl<'a> Neg for &'a AffineNielsPoint
Source§type Output = AffineNielsPoint
type Output = AffineNielsPoint
The resulting type after applying the
- operator.Source§fn neg(self) -> AffineNielsPoint
fn neg(self) -> AffineNielsPoint
Performs the unary
- operation. Read moreSource§impl PartialEq for AffineNielsPoint
impl PartialEq for AffineNielsPoint
Source§impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
Source§type Output = CompletedPoint
type Output = CompletedPoint
The resulting type after applying the
- operator.Source§fn sub(self, other: &'b AffineNielsPoint) -> CompletedPoint
fn sub(self, other: &'b AffineNielsPoint) -> CompletedPoint
Performs the
- operation. Read moreSource§impl Zeroize for AffineNielsPoint
impl Zeroize for AffineNielsPoint
impl Copy for AffineNielsPoint
impl Eq for AffineNielsPoint
impl StructuralPartialEq for AffineNielsPoint
Auto Trait Implementations§
impl Freeze for AffineNielsPoint
impl RefUnwindSafe for AffineNielsPoint
impl Send for AffineNielsPoint
impl Sync for AffineNielsPoint
impl Unpin for AffineNielsPoint
impl UnwindSafe for AffineNielsPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more