#[repr(C)]pub struct PamConversation {
pub conv: Option<ConvClosure>,
pub data_ptr: *mut c_void,
}Expand description
Conversation structure containing the converse function and authentication data
From _pam_types.h:
“The actual conversation structure itself”
Fields§
§conv: Option<ConvClosure>§data_ptr: *mut c_voidAuto Trait Implementations§
impl Freeze for PamConversation
impl RefUnwindSafe for PamConversation
impl !Send for PamConversation
impl !Sync for PamConversation
impl Unpin for PamConversation
impl UnwindSafe for PamConversation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more