pub enum FPLoginAuth {
NoUserAuthent,
CleartxtPasswrd {
username: MacString,
password: [u8; 8],
},
}Expand description
Authentication payload for FPLogin, varies by UAM
Variants§
Trait Implementations§
Source§impl Clone for FPLoginAuth
impl Clone for FPLoginAuth
Source§fn clone(&self) -> FPLoginAuth
fn clone(&self) -> FPLoginAuth
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 FPLoginAuth
impl Debug for FPLoginAuth
Source§impl PartialEq for FPLoginAuth
impl PartialEq for FPLoginAuth
Source§fn eq(&self, other: &FPLoginAuth) -> bool
fn eq(&self, other: &FPLoginAuth) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FPLoginAuth
impl StructuralPartialEq for FPLoginAuth
Auto Trait Implementations§
impl Freeze for FPLoginAuth
impl RefUnwindSafe for FPLoginAuth
impl Send for FPLoginAuth
impl Sync for FPLoginAuth
impl Unpin for FPLoginAuth
impl UnsafeUnpin for FPLoginAuth
impl UnwindSafe for FPLoginAuth
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