pub struct SynchronousConnectionChanged {
pub status: Status,
pub handle: ConnHandle,
pub transmission_interval: u8,
pub retransmission_window: u8,
pub rx_packet_length: u16,
pub tx_packet_length: u16,
}Expand description
Synchronous Connection Changed event ๐
Fieldsยง
ยงstatus: Statusstatus
handle: ConnHandlehandle
transmission_interval: u8transmission_interval
retransmission_window: u8retransmission_window
rx_packet_length: u16rx_packet_length
tx_packet_length: u16tx_packet_length
Trait Implementationsยง
Sourceยงimpl Clone for SynchronousConnectionChanged
impl Clone for SynchronousConnectionChanged
Sourceยงfn clone(&self) -> SynchronousConnectionChanged
fn clone(&self) -> SynchronousConnectionChanged
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSourceยงimpl<'a> EventParams<'a> for SynchronousConnectionChanged
impl<'a> EventParams<'a> for SynchronousConnectionChanged
Sourceยงconst EVENT_CODE: u8 = 0x2d
const EVENT_CODE: u8 = 0x2d
The event code these parameters are for
Sourceยงimpl<'a> FromHciBytes<'a> for SynchronousConnectionChanged
impl<'a> FromHciBytes<'a> for SynchronousConnectionChanged
Sourceยงfn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
fn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
Deserialize bytes into a HCI type, return additional bytes.
Sourceยงfn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
fn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
Deserialize bytes into a HCI type, must consume all bytes.
Sourceยงimpl Hash for SynchronousConnectionChanged
impl Hash for SynchronousConnectionChanged
impl Copy for SynchronousConnectionChanged
Auto Trait Implementationsยง
impl Freeze for SynchronousConnectionChanged
impl RefUnwindSafe for SynchronousConnectionChanged
impl Send for SynchronousConnectionChanged
impl Sync for SynchronousConnectionChanged
impl Unpin for SynchronousConnectionChanged
impl UnsafeUnpin for SynchronousConnectionChanged
impl UnwindSafe for SynchronousConnectionChanged
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