Struct mbedtls_sys::ecdh_context[][src]

#[repr(C)]
pub struct ecdh_context { pub grp: ecp_group, pub d: mpi, pub Q: ecp_point, pub Qp: ecp_point, pub z: mpi, pub point_format: c_int, pub Vi: ecp_point, pub Vf: ecp_point, pub _d: mpi, }

Fields

grp: ecp_groupd: mpiQ: ecp_pointQp: ecp_pointz: mpipoint_format: c_intVi: ecp_pointVf: ecp_point_d: mpi

Trait Implementations

impl Clone for ecdh_context[src]

impl Copy for ecdh_context[src]

impl Default for ecdh_context[src]

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<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.