Enum pam_sys::types::PamItemType
[−]
[src]
pub enum PamItemType {
SERVICE,
USER,
TTY,
RHOST,
CONV,
AUTHTOK,
OLDAUTHTOK,
RUSER,
USER_PROMPT,
FAIL_DELAY,
XDISPLAY,
XAUTHDATA,
AUTHTOK_TYPE,
}The Linux-PAM item types
These defines are used by pam_set_item() and pam_get_item(). Please check the spec which are allowed for use by applications and which are only allowed for use by modules.
Variants
SERVICEThe service name
USERThe user name
TTYThe tty name
RHOSTThe remote host name
CONVThe pam_conv structure
AUTHTOKThe authentication token (password)
OLDAUTHTOKThe old authentication token
RUSERThe remote user name
USER_PROMPTthe prompt for getting a username Linux-PAM extensions
FAIL_DELAYapp supplied function to override failure delays
XDISPLAYX display name
XAUTHDATAX server authentication data
AUTHTOK_TYPEThe type for pam_get_authtok
Trait Implementations
impl Clone for PamItemType[src]
fn clone(&self) -> PamItemType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for PamItemType[src]
impl Debug for PamItemType[src]
impl PartialEq for PamItemType[src]
fn eq(&self, __arg_0: &PamItemType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.