Struct ChannelRateInfo
#[repr(C)]pub struct ChannelRateInfo {
pub current_tx_rate: u32,
pub current_rx_rate: u32,
pub max_tx_rate: u32,
pub max_rx_rate: u32,
}Fields§
§current_tx_rate: u32Current Tx data rate for the channel.
current_rx_rate: u32Current Rx data rate for the channel.
max_tx_rate: u32Maximum Tx data rate for the channel.
max_rx_rate: u32Maximum Rx data rate for the channel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChannelRateInfo
impl RefUnwindSafe for ChannelRateInfo
impl Send for ChannelRateInfo
impl Sync for ChannelRateInfo
impl Unpin for ChannelRateInfo
impl UnwindSafe for ChannelRateInfo
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