pub struct Extended80211Aggregation {
pub pdus: Vec<Pdu>,
}Expand description
Extended 802.11 Aggregation - Format (0,1016)
802.11 frame aggregation information
§XDR Definition (sFlow 802.11)
/* Extended 802.11 Aggregation Data */
/* opaque = flow_data; enterprise = 0; format = 1016 */
struct extended_80211_aggregation {
pdu pdus<>; /* Array of PDUs in the aggregation */
}Fields§
§pdus: Vec<Pdu>Array of PDUs in the aggregation
Trait Implementations§
Source§impl Clone for Extended80211Aggregation
impl Clone for Extended80211Aggregation
Source§fn clone(&self) -> Extended80211Aggregation
fn clone(&self) -> Extended80211Aggregation
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 Extended80211Aggregation
impl Debug for Extended80211Aggregation
Source§impl PartialEq for Extended80211Aggregation
impl PartialEq for Extended80211Aggregation
impl Eq for Extended80211Aggregation
impl StructuralPartialEq for Extended80211Aggregation
Auto Trait Implementations§
impl Freeze for Extended80211Aggregation
impl RefUnwindSafe for Extended80211Aggregation
impl Send for Extended80211Aggregation
impl Sync for Extended80211Aggregation
impl Unpin for Extended80211Aggregation
impl UnwindSafe for Extended80211Aggregation
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