[][src]Struct secp256kfun::marker::Jacobian

pub struct Jacobian;

A Non-normalized Point. Jacobian points are represented internally as three field elements: x,y and z. Most point operations return Jacobian points.

In general it's most efficient to normalize Jacobian points into Normal points, as late as possible.

Trait Implementations

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

type Out = Point<Jacobian, S, Z>

The result type of marking T with Self

impl Clone for Jacobian[src]

impl Copy for Jacobian[src]

impl Debug for Jacobian[src]

impl Default for Jacobian[src]

impl PointType for Jacobian[src]

type NegationType = Jacobian

The point type returned from the negation of a point of this type.

Auto Trait Implementations

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.