pub enum PamMessageStyle {
PROMPT_ECHO_OFF = 1,
PROMPT_ECHO_ON = 2,
ERROR_MSG = 3,
TEXT_INFO = 4,
}Expand description
The Linux-PAM message styles
Variants§
Trait Implementations§
Source§impl Clone for PamMessageStyle
impl Clone for PamMessageStyle
Source§fn clone(&self) -> PamMessageStyle
fn clone(&self) -> PamMessageStyle
Returns a duplicate of the value. Read more
1.0.0 · 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 PamMessageStyle
impl Debug for PamMessageStyle
Source§impl Display for PamMessageStyle
impl Display for PamMessageStyle
Source§impl From<i32> for PamMessageStyle
impl From<i32> for PamMessageStyle
Source§fn from(style: i32) -> PamMessageStyle
fn from(style: i32) -> PamMessageStyle
Converts to this type from the input type.
Source§impl PartialEq for PamMessageStyle
impl PartialEq for PamMessageStyle
impl Copy for PamMessageStyle
impl StructuralPartialEq for PamMessageStyle
Auto Trait Implementations§
impl Freeze for PamMessageStyle
impl RefUnwindSafe for PamMessageStyle
impl Send for PamMessageStyle
impl Sync for PamMessageStyle
impl Unpin for PamMessageStyle
impl UnwindSafe for PamMessageStyle
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