[][src]Struct secp256kfun::marker::Normal

pub struct Normal;

A Fully Normalized Point. Internally Normal points are represented using affine coordinates with fully normalized x and y field elements.

Trait Implementations

impl<T, S, Z> ChangeMark<Point<T, S, Z>> for Normal[src]

type Out = Point<Normal, S, Z>

The result type of marking T with Self

impl Clone for Normal[src]

impl Copy for Normal[src]

impl Debug for Normal[src]

impl Default for Normal[src]

impl Normalized for Normal[src]

type YType = ()

Indicates what is known at compile time about the y-coordinate of the normalized point. It is either () or a YChoice.

Auto Trait Implementations

impl RefUnwindSafe for Normal

impl Send for Normal

impl Sync for Normal

impl Unpin for Normal

impl UnwindSafe for Normal

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Z, S, Y, SNew> ChangeMark<Point<Y, S, Z>> for SNew where
    SNew: Secrecy
[src]

type Out = Point<Y, SNew, Z>

The result type of marking T with Self

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Mark for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.