Struct boring_sys::ssl_early_callback_ctx[][src]

#[repr(C)]pub struct ssl_early_callback_ctx {
    pub ssl: *mut SSL,
    pub client_hello: *const u8,
    pub client_hello_len: usize,
    pub version: u16,
    pub random: *const u8,
    pub random_len: usize,
    pub session_id: *const u8,
    pub session_id_len: usize,
    pub cipher_suites: *const u8,
    pub cipher_suites_len: usize,
    pub compression_methods: *const u8,
    pub compression_methods_len: usize,
    pub extensions: *const u8,
    pub extensions_len: usize,
}

Fields

ssl: *mut SSLclient_hello: *const u8client_hello_len: usizeversion: u16random: *const u8random_len: usizesession_id: *const u8session_id_len: usizecipher_suites: *const u8cipher_suites_len: usizecompression_methods: *const u8compression_methods_len: usizeextensions: *const u8extensions_len: usize

Trait Implementations

impl Clone for ssl_early_callback_ctx[src]

impl Copy for ssl_early_callback_ctx[src]

impl Debug for ssl_early_callback_ctx[src]

impl Default for ssl_early_callback_ctx[src]

impl Eq for ssl_early_callback_ctx[src]

impl PartialEq<ssl_early_callback_ctx> for ssl_early_callback_ctx[src]

impl StructuralEq for ssl_early_callback_ctx[src]

impl StructuralPartialEq for ssl_early_callback_ctx[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.