#[repr(u8)]pub enum Status {
Pass = 1,
Fail = 2,
GetData = 3,
GetUser = 4,
GetPassword = 5,
Restart = 6,
Error = 7,
Follow = 33,
}Expand description
The authentication status, as returned by a TACACS+ server.
Variants§
Pass = 1
Authentication succeeded.
Fail = 2
Authentication failed.
GetData = 3
Request for more domain-specific data.
GetUser = 4
Request for username.
GetPassword = 5
Request for password.
Restart = 6
Restart session, discarding current one.
Error = 7
Server-side error while authenticating.
Follow = 33
👎Deprecated: Forwarding to an alternative daemon was deprecated in RFC-8907.
Forward authentication request to an alternative daemon.
Trait Implementations§
Source§impl TryFromPrimitive for Status
impl TryFromPrimitive for Status
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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