pub struct Extended80211Payload {
pub cipher_suite: u32,
pub data: Vec<u8>,
}Expand description
Extended 802.11 Payload - Format (0,1013)
Unencrypted 802.11 payload data
§XDR Definition (sFlow 802.11)
/* Extended 80211 Payload */
/* opaque = flow_data; enterprise = 0; format = 1013 */
struct extended_80211_payload {
cipher_suite ciphersuite; /* encryption scheme used for this packet */
opaque data<>; /* unencrypted bytes from the payload */
}Fields§
§cipher_suite: u32Cipher suite (OUI + Suite Type)
data: Vec<u8>Unencrypted payload data
Trait Implementations§
Source§impl Clone for Extended80211Payload
impl Clone for Extended80211Payload
Source§fn clone(&self) -> Extended80211Payload
fn clone(&self) -> Extended80211Payload
Returns a duplicate of the value. Read more
1.0.0 · 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 Extended80211Payload
impl Debug for Extended80211Payload
Source§impl PartialEq for Extended80211Payload
impl PartialEq for Extended80211Payload
impl Eq for Extended80211Payload
impl StructuralPartialEq for Extended80211Payload
Auto Trait Implementations§
impl Freeze for Extended80211Payload
impl RefUnwindSafe for Extended80211Payload
impl Send for Extended80211Payload
impl Sync for Extended80211Payload
impl Unpin for Extended80211Payload
impl UnwindSafe for Extended80211Payload
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