Struct stm32wb_hci::event::command::TxPowerLevel
source · pub struct TxPowerLevel {
pub status: Status,
pub conn_handle: ConnectionHandle,
pub tx_power_level_dbm: i8,
}Expand description
Values returned by the Read Transmit Power Level command.
Fields§
§status: StatusDid the command fail, and if so, how?
conn_handle: ConnectionHandleSpecifies which connection handle’s transmit power level setting is returned
tx_power_level_dbm: i8Power level for the connection handle, in dBm.
Valid range is -30 dBm to +20 dBm, but that is not enforced by this implementation.
Trait Implementations§
source§impl Clone for TxPowerLevel
impl Clone for TxPowerLevel
source§fn clone(&self) -> TxPowerLevel
fn clone(&self) -> TxPowerLevel
Returns a copy 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 TxPowerLevel
impl Debug for TxPowerLevel
impl Copy for TxPowerLevel
Auto Trait Implementations§
impl RefUnwindSafe for TxPowerLevel
impl Send for TxPowerLevel
impl Sync for TxPowerLevel
impl Unpin for TxPowerLevel
impl UnwindSafe for TxPowerLevel
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