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: Status
Did the command fail, and if so, how?
conn_handle: ConnectionHandle
Specifies which connection handle’s transmit power level setting is returned
tx_power_level_dbm: i8
Power 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 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 TxPowerLevel
impl Debug for TxPowerLevel
impl Copy for TxPowerLevel
Auto Trait Implementations§
impl Freeze for TxPowerLevel
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