[][src]Struct nginx::X509V3_CONF_METHOD_st

#[repr(C)]pub struct X509V3_CONF_METHOD_st {
    pub get_string: Option<unsafe extern "C" fn(db: *mut c_void, section: *const c_char, value: *const c_char) -> *mut c_char>,
    pub get_section: Option<unsafe extern "C" fn(db: *mut c_void, section: *const c_char) -> *mut stack_st_CONF_VALUE>,
    pub free_string: Option<unsafe extern "C" fn(db: *mut c_void, string: *mut c_char)>,
    pub free_section: Option<unsafe extern "C" fn(db: *mut c_void, section: *mut stack_st_CONF_VALUE)>,
}

Fields

get_string: Option<unsafe extern "C" fn(db: *mut c_void, section: *const c_char, value: *const c_char) -> *mut c_char>get_section: Option<unsafe extern "C" fn(db: *mut c_void, section: *const c_char) -> *mut stack_st_CONF_VALUE>free_string: Option<unsafe extern "C" fn(db: *mut c_void, string: *mut c_char)>free_section: Option<unsafe extern "C" fn(db: *mut c_void, section: *mut stack_st_CONF_VALUE)>

Trait Implementations

impl Clone for X509V3_CONF_METHOD_st[src]

impl Copy for X509V3_CONF_METHOD_st[src]

impl Debug for X509V3_CONF_METHOD_st[src]

Auto Trait Implementations

impl RefUnwindSafe for X509V3_CONF_METHOD_st

impl Send for X509V3_CONF_METHOD_st

impl Sync for X509V3_CONF_METHOD_st

impl Unpin for X509V3_CONF_METHOD_st

impl UnwindSafe for X509V3_CONF_METHOD_st

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.