Struct curve25519_dalek::edwards::CompletedPoint [] [src]

pub struct CompletedPoint {
    pub X: FieldElement,
    pub Y: FieldElement,
    pub Z: FieldElement,
    pub T: FieldElement,
}

A CompletedPoint is a point ((X:Z), (Y:T)) in 𝗣¹(𝔽ₚ)×𝗣¹(𝔽ₚ). A point (x,y) in the affine model corresponds to ((x:1),(y:1)).

Fields

Methods

impl CompletedPoint
[src]

[src]

Convert to a ProjectivePoint

[src]

Convert to an ExtendedPoint

Trait Implementations

impl Copy for CompletedPoint
[src]

impl Clone for CompletedPoint
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CompletedPoint
[src]

[src]

Formats the value using the given formatter.