[][src]Struct openssl::ec::PointConversionForm

pub struct PointConversionForm(_);

Compressed or Uncompressed conversion

Conversion from the binary value of the point on the curve is performed in one of compressed, uncompressed, or hybrid conversions. The default is compressed, except for binary curves.

Further documentation is available in the X9.62 standard.

Methods

impl PointConversionForm[src]

pub const COMPRESSED: PointConversionForm[src]

Compressed conversion from point value.

pub const UNCOMPRESSED: PointConversionForm[src]

Uncompressed conversion from point value.

pub const HYBRID: PointConversionForm[src]

Performs both compressed and uncompressed conversions.

Trait Implementations

impl Clone for PointConversionForm[src]

impl Copy for PointConversionForm[src]

Auto Trait Implementations

impl RefUnwindSafe for PointConversionForm

impl Send for PointConversionForm

impl Sync for PointConversionForm

impl Unpin for PointConversionForm

impl UnwindSafe for PointConversionForm

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> From<T> for T[src]

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

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.