pub struct Igtk {
pub igtk: Vec<u8>,
pub key_id: u16,
pub ipn: [u8; 6],
pub cipher: Cipher,
}Fields§
§igtk: Vec<u8>§key_id: u16§ipn: [u8; 6]§cipher: CipherImplementations§
Trait Implementations§
Source§impl PartialEq for Igtk
PartialEq implementation explicitly excludes the IPN (Integrity Packet Number).
Both PartialEq and Hash ignore the IPN to prevent key re-installation (KRACK) on retransmissions.
impl PartialEq for Igtk
PartialEq implementation explicitly excludes the IPN (Integrity Packet Number). Both PartialEq and Hash ignore the IPN to prevent key re-installation (KRACK) on retransmissions.
impl Eq for Igtk
Auto Trait Implementations§
impl Freeze for Igtk
impl RefUnwindSafe for Igtk
impl Send for Igtk
impl Sync for Igtk
impl Unpin for Igtk
impl UnsafeUnpin for Igtk
impl UnwindSafe for Igtk
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