[][src]Struct srtp2_sys::srtp_cipher_type_t

#[repr(C)]
pub struct srtp_cipher_type_t {
    pub alloc: srtp_cipher_alloc_func_t,
    pub dealloc: srtp_cipher_dealloc_func_t,
    pub init: srtp_cipher_init_func_t,
    pub set_aad: srtp_cipher_set_aad_func_t,
    pub encrypt: srtp_cipher_encrypt_func_t,
    pub decrypt: srtp_cipher_encrypt_func_t,
    pub set_iv: srtp_cipher_set_iv_func_t,
    pub get_tag: srtp_cipher_get_tag_func_t,
    pub description: *const c_char,
    pub test_data: *const srtp_cipher_test_case_t,
    pub id: srtp_cipher_type_id_t,
}

Fields

alloc: srtp_cipher_alloc_func_tdealloc: srtp_cipher_dealloc_func_tinit: srtp_cipher_init_func_tset_aad: srtp_cipher_set_aad_func_tencrypt: srtp_cipher_encrypt_func_tdecrypt: srtp_cipher_encrypt_func_tset_iv: srtp_cipher_set_iv_func_tget_tag: srtp_cipher_get_tag_func_tdescription: *const c_chartest_data: *const srtp_cipher_test_case_tid: srtp_cipher_type_id_t

Trait Implementations

impl Clone for srtp_cipher_type_t[src]

impl Copy for srtp_cipher_type_t[src]

impl Debug for srtp_cipher_type_t[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.