[][src]Struct pam_sys::pam_conv

#[repr(C)]pub struct pam_conv {
    pub conv: Option<unsafe extern "C" fn(num_msg: c_int, msg: *mut *const pam_message, resp: *mut *mut pam_response, appdata_ptr: *mut c_void) -> c_int>,
    pub appdata_ptr: *mut c_void,
}

Fields

conv: Option<unsafe extern "C" fn(num_msg: c_int, msg: *mut *const pam_message, resp: *mut *mut pam_response, appdata_ptr: *mut c_void) -> c_int>appdata_ptr: *mut c_void

Trait Implementations

impl Clone for pam_conv[src]

impl Copy for pam_conv[src]

impl Debug for pam_conv[src]

Auto Trait Implementations

impl RefUnwindSafe for pam_conv

impl !Send for pam_conv

impl !Sync for pam_conv

impl Unpin for pam_conv

impl UnwindSafe for pam_conv

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.