pub struct RadioUtilization {
pub elapsed_time: u32,
pub on_channel_time: u32,
pub on_channel_busy_time: u32,
}Expand description
Radio Utilization - Format (0,1002)
802.11 radio channel utilization
§XDR Definition (sFlow 802.11)
/* 802.11 radio utilization */
/* opaque = counter_data; enterprise = 0; format = 1002 */
struct radio_utilization {
unsigned int elapsed_time; /* Elapsed time in ms */
unsigned int on_channel_time; /* Time on assigned channel */
unsigned int on_channel_busy_time;/* Time busy on channel */
}Fields§
§elapsed_time: u32Elapsed time in milliseconds
on_channel_time: u32On channel time
on_channel_busy_time: u32On channel busy time
Trait Implementations§
Source§impl Clone for RadioUtilization
impl Clone for RadioUtilization
Source§fn clone(&self) -> RadioUtilization
fn clone(&self) -> RadioUtilization
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 RadioUtilization
impl Debug for RadioUtilization
Source§impl PartialEq for RadioUtilization
impl PartialEq for RadioUtilization
impl Eq for RadioUtilization
impl StructuralPartialEq for RadioUtilization
Auto Trait Implementations§
impl Freeze for RadioUtilization
impl RefUnwindSafe for RadioUtilization
impl Send for RadioUtilization
impl Sync for RadioUtilization
impl Unpin for RadioUtilization
impl UnwindSafe for RadioUtilization
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