pub enum RejectReason {
InternalError(Error),
AuthFailed,
TooManyRetries,
KeyExpiration,
}
Variants§
InternalError(Error)
We experienced a failure that was unrelated to data received from the peer. This likely means we are not in a good state.
AuthFailed
Data received from the peer failed validation, and we cannot generate a PMK.
TooManyRetries
The peer has failed to respond or sent incorrect responses too many times.
KeyExpiration
The SAE PMKSA has expired, reauthenticate.
Trait Implementations§
Source§impl Debug for RejectReason
impl Debug for RejectReason
Auto Trait Implementations§
impl Freeze for RejectReason
impl RefUnwindSafe for RejectReason
impl Send for RejectReason
impl Sync for RejectReason
impl Unpin for RejectReason
impl UnwindSafe for RejectReason
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