pub enum PamMessageKind {
PromptEchoOn,
PromptEchoOff,
TextInfo,
Error,
}Expand description
PAM conversation message kinds reported by authentication backends.
Variants§
Trait Implementations§
Source§impl Clone for PamMessageKind
impl Clone for PamMessageKind
Source§fn clone(&self) -> PamMessageKind
fn clone(&self) -> PamMessageKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PamMessageKind
impl Debug for PamMessageKind
Source§impl PartialEq for PamMessageKind
impl PartialEq for PamMessageKind
Source§fn eq(&self, other: &PamMessageKind) -> bool
fn eq(&self, other: &PamMessageKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PamMessageKind
impl Eq for PamMessageKind
impl StructuralPartialEq for PamMessageKind
Auto Trait Implementations§
impl Freeze for PamMessageKind
impl RefUnwindSafe for PamMessageKind
impl Send for PamMessageKind
impl Sync for PamMessageKind
impl Unpin for PamMessageKind
impl UnsafeUnpin for PamMessageKind
impl UnwindSafe for PamMessageKind
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