Struct mbedtls_sys::ecjpake_context[][src]

#[repr(C)]
pub struct ecjpake_context { pub md_info: *const md_info_t, pub grp: ecp_group, pub role: ecjpake_role, pub point_format: c_int, pub Xm1: ecp_point, pub Xm2: ecp_point, pub Xp1: ecp_point, pub Xp2: ecp_point, pub Xp: ecp_point, pub xm1: mpi, pub xm2: mpi, pub s: mpi, }

Fields

md_info: *const md_info_tgrp: ecp_grouprole: ecjpake_rolepoint_format: c_intXm1: ecp_pointXm2: ecp_pointXp1: ecp_pointXp2: ecp_pointXp: ecp_pointxm1: mpixm2: mpis: mpi

Trait Implementations

impl Clone for ecjpake_context[src]

impl Copy for ecjpake_context[src]

impl Default for ecjpake_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.