pub struct TxPowerLevel<VS> {
pub status: Status<VS>,
pub conn_handle: ConnectionHandle,
pub tx_power_level_dbm: i8,
}Expand description
Values returned by the Read Transmit Power Level command.
Fields§
§status: Status<VS>Did 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<VS: Clone> Clone for TxPowerLevel<VS>
impl<VS: Clone> Clone for TxPowerLevel<VS>
Source§fn clone(&self) -> TxPowerLevel<VS>
fn clone(&self) -> TxPowerLevel<VS>
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<VS: Debug> Debug for TxPowerLevel<VS>
impl<VS: Debug> Debug for TxPowerLevel<VS>
impl<VS: Copy> Copy for TxPowerLevel<VS>
Auto Trait Implementations§
impl<VS> Freeze for TxPowerLevel<VS>where
VS: Freeze,
impl<VS> RefUnwindSafe for TxPowerLevel<VS>where
VS: RefUnwindSafe,
impl<VS> Send for TxPowerLevel<VS>where
VS: Send,
impl<VS> Sync for TxPowerLevel<VS>where
VS: Sync,
impl<VS> Unpin for TxPowerLevel<VS>where
VS: Unpin,
impl<VS> UnwindSafe for TxPowerLevel<VS>where
VS: UnwindSafe,
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