pub struct L2CapCocReconfigConfirm {
pub conn_handle: ConnectionHandle,
pub result: u16,
}
Expand description
This event is generated when receiving a valid Credit Based Reconfigure Response packet.
See Bluetooth spec. v.5.4 [Vol 3, Part A].
Fields§
§conn_handle: ConnectionHandle
handle of the connection where this event occured.
result: u16
This parameter indicates the outcome of the request. A value of 0x0000 indicates success while a non zero value indicates the request is refused
Values:
- 0x0000 .. 0x000C
Trait Implementations§
Source§impl Clone for L2CapCocReconfigConfirm
impl Clone for L2CapCocReconfigConfirm
Source§fn clone(&self) -> L2CapCocReconfigConfirm
fn clone(&self) -> L2CapCocReconfigConfirm
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 L2CapCocReconfigConfirm
impl Debug for L2CapCocReconfigConfirm
impl Copy for L2CapCocReconfigConfirm
Auto Trait Implementations§
impl Freeze for L2CapCocReconfigConfirm
impl RefUnwindSafe for L2CapCocReconfigConfirm
impl Send for L2CapCocReconfigConfirm
impl Sync for L2CapCocReconfigConfirm
impl Unpin for L2CapCocReconfigConfirm
impl UnwindSafe for L2CapCocReconfigConfirm
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