Struct stm32wb_hci::event::LePhyUpdateComplete
source · pub struct LePhyUpdateComplete<VS> {
pub conn_handle: ConnectionHandle,
pub status: Status<VS>,
pub tx_phy: Phy,
pub rx_phy: Phy,
}Expand description
Indicates that the controller has changed the transmitter or receiver PHY in use.
This is either sent in response to a LE Set Phy command, or when the controller does an autonomous PHY update.
Defined in Vol 4, Part E, Section 7.7.65.12 of the spec.
Fields§
§conn_handle: ConnectionHandleConnection handle to be used to identify a connection between two Bluetooth devices.
status: Status<VS>Status of the PHY update.
tx_phy: PhyPHY used for transmission.
rx_phy: PhyPHY used for reception.
Trait Implementations§
source§impl<VS: Clone> Clone for LePhyUpdateComplete<VS>
impl<VS: Clone> Clone for LePhyUpdateComplete<VS>
source§fn clone(&self) -> LePhyUpdateComplete<VS>
fn clone(&self) -> LePhyUpdateComplete<VS>
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<VS: Debug> Debug for LePhyUpdateComplete<VS>
impl<VS: Debug> Debug for LePhyUpdateComplete<VS>
source§impl<VS> Format for LePhyUpdateComplete<VS>where
VS: Format,
impl<VS> Format for LePhyUpdateComplete<VS>where VS: Format,
impl<VS: Copy> Copy for LePhyUpdateComplete<VS>
Auto Trait Implementations§
impl<VS> RefUnwindSafe for LePhyUpdateComplete<VS>where VS: RefUnwindSafe,
impl<VS> Send for LePhyUpdateComplete<VS>where VS: Send,
impl<VS> Sync for LePhyUpdateComplete<VS>where VS: Sync,
impl<VS> Unpin for LePhyUpdateComplete<VS>where VS: Unpin,
impl<VS> UnwindSafe for LePhyUpdateComplete<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