#[non_exhaustive]pub enum RsnEapolKeyHandshakeMessage {
Message1,
Message2,
Message3,
Message4,
Unknown,
}Expand description
Candidate RSN EAPOL-Key four-way handshake message shape.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Message1
Message 1 of the RSN four-way handshake.
Message2
Message 2 of the RSN four-way handshake.
Message3
Message 3 of the RSN four-way handshake.
Message4
Message 4 of the RSN four-way handshake.
Unknown
The observed flags and fields do not match a supported passive shape.
Implementations§
Trait Implementations§
Source§impl Clone for RsnEapolKeyHandshakeMessage
impl Clone for RsnEapolKeyHandshakeMessage
Source§fn clone(&self) -> RsnEapolKeyHandshakeMessage
fn clone(&self) -> RsnEapolKeyHandshakeMessage
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 moreimpl Copy for RsnEapolKeyHandshakeMessage
Source§impl Debug for RsnEapolKeyHandshakeMessage
impl Debug for RsnEapolKeyHandshakeMessage
impl Eq for RsnEapolKeyHandshakeMessage
Source§impl Hash for RsnEapolKeyHandshakeMessage
impl Hash for RsnEapolKeyHandshakeMessage
Source§impl PartialEq for RsnEapolKeyHandshakeMessage
impl PartialEq for RsnEapolKeyHandshakeMessage
Source§fn eq(&self, other: &RsnEapolKeyHandshakeMessage) -> bool
fn eq(&self, other: &RsnEapolKeyHandshakeMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RsnEapolKeyHandshakeMessage
Auto Trait Implementations§
impl Freeze for RsnEapolKeyHandshakeMessage
impl RefUnwindSafe for RsnEapolKeyHandshakeMessage
impl Send for RsnEapolKeyHandshakeMessage
impl Sync for RsnEapolKeyHandshakeMessage
impl Unpin for RsnEapolKeyHandshakeMessage
impl UnsafeUnpin for RsnEapolKeyHandshakeMessage
impl UnwindSafe for RsnEapolKeyHandshakeMessage
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