[][src]Enum elliptic_curve::sec1::Coordinates

pub enum Coordinates<'a, C: Curve> {
    Identity,
    Compressed {
        x: &'a FieldBytes<C>,
        y_is_odd: bool,
    },
    Uncompressed {
        x: &'a FieldBytes<C>,
        y: &'a FieldBytes<C>,
    },
}

Enum representing the coordinates of either compressed or uncompressed SEC1-encoded elliptic curve points.

Variants

Identity

Identity point (a.k.a. point at infinity)

Compressed

Compressed curve point

Fields of Compressed

x: &'a FieldBytes<C>

x-coordinate

y_is_odd: bool

Is the y-coordinate odd?

Uncompressed

Uncompressed curve point

Fields of Uncompressed

x: &'a FieldBytes<C>

x-coordinate

y: &'a FieldBytes<C>

y-coordinate

Implementations

impl<'a, C: Curve> Coordinates<'a, C>[src]

pub fn tag(&self) -> Tag[src]

Get the tag value needed to encode this set of Coordinates

Trait Implementations

impl<'a, C: Clone + Curve> Clone for Coordinates<'a, C>[src]

impl<'a, C: Copy + Curve> Copy for Coordinates<'a, C>[src]

impl<'a, C: Debug + Curve> Debug for Coordinates<'a, C>[src]

impl<'a, C: Eq + Curve> Eq for Coordinates<'a, C>[src]

impl<'a, C: PartialEq + Curve> PartialEq<Coordinates<'a, C>> for Coordinates<'a, C>[src]

impl<'a, C: Curve> StructuralEq for Coordinates<'a, C>[src]

impl<'a, C: Curve> StructuralPartialEq for Coordinates<'a, C>[src]

Auto Trait Implementations

impl<'a, C> RefUnwindSafe for Coordinates<'a, C> where
    <<C as Curve>::FieldSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe
[src]

impl<'a, C> Send for Coordinates<'a, C> where
    <C as Curve>::FieldSize: ArrayLength<u8>, 
[src]

impl<'a, C> Sync for Coordinates<'a, C> where
    <C as Curve>::FieldSize: ArrayLength<u8>, 
[src]

impl<'a, C> Unpin for Coordinates<'a, C>[src]

impl<'a, C> UnwindSafe for Coordinates<'a, C> where
    <<C as Curve>::FieldSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe
[src]

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<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

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.