#[repr(u8)]pub enum AuthenticationService {
None = 0,
Login = 1,
Enable = 2,
Ppp = 3,
Pt = 5,
RCommand = 6,
X25 = 7,
Nasi = 8,
FwProxy = 9,
}Expand description
A TACACS+ authentication service. Most of these values are only kept for backwards compatibility.
Variants§
None = 0
No authentication performed.
Login = 1
Regular login to a client device.
Enable = 2
Request for a change in privileges, similar to the functionality of su(1).
Ppp = 3
Point-to-Point Protocol
Pt = 5
PT authentication (not sure exactly what the acronym stands for).
RCommand = 6
Authentication from the r-command suite, e.g. via rlogin(1).
X25 = 7
X.25 suite (I assume), potentially its NetWare flavor.
Nasi = 8
NetWare Asynchronous Support Interface
FwProxy = 9
Firewall proxy
Trait Implementations§
Source§impl Clone for AuthenticationService
impl Clone for AuthenticationService
Source§fn clone(&self) -> AuthenticationService
fn clone(&self) -> AuthenticationService
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 AuthenticationService
impl Debug for AuthenticationService
Source§impl Display for AuthenticationService
impl Display for AuthenticationService
Source§impl Hash for AuthenticationService
impl Hash for AuthenticationService
Source§impl PartialEq for AuthenticationService
impl PartialEq for AuthenticationService
impl Copy for AuthenticationService
impl Eq for AuthenticationService
impl StructuralPartialEq for AuthenticationService
Auto Trait Implementations§
impl Freeze for AuthenticationService
impl RefUnwindSafe for AuthenticationService
impl Send for AuthenticationService
impl Sync for AuthenticationService
impl Unpin for AuthenticationService
impl UnwindSafe for AuthenticationService
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