pub struct L2CapConnectionUpdateResponse {
pub conn_handle: ConnectionHandle,
pub result: L2CapConnectionUpdateResult,
}
Expand description
This event is generated when the central device responds to the L2CAP connection update request packet.
For more info see connection parameter update response and command reject in Bluetooth Core v4.0 spec.
Fields§
§conn_handle: ConnectionHandle
The connection handle related to the event
result: L2CapConnectionUpdateResult
The result of the update request, including details about the result.
Trait Implementations§
Source§impl Clone for L2CapConnectionUpdateResponse
impl Clone for L2CapConnectionUpdateResponse
Source§fn clone(&self) -> L2CapConnectionUpdateResponse
fn clone(&self) -> L2CapConnectionUpdateResponse
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 moreimpl Copy for L2CapConnectionUpdateResponse
Auto Trait Implementations§
impl Freeze for L2CapConnectionUpdateResponse
impl RefUnwindSafe for L2CapConnectionUpdateResponse
impl Send for L2CapConnectionUpdateResponse
impl Sync for L2CapConnectionUpdateResponse
impl Unpin for L2CapConnectionUpdateResponse
impl UnwindSafe for L2CapConnectionUpdateResponse
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