Struct stm32wb_hci::vendor::stm32wb::command::l2cap::ConnectionParameterUpdateResponse
source · pub struct ConnectionParameterUpdateResponse {
pub conn_handle: ConnectionHandle,
pub conn_interval: ConnectionInterval,
pub expected_connection_length_range: ExpectedConnectionLength,
pub identifier: u8,
pub accepted: bool,
}Expand description
Parameters for the
connection_parameter_update_response
command.
Fields§
§conn_handle: ConnectionHandleConnection handle received in the
L2CapConnectionUpdateRequest
event.
conn_interval: ConnectionIntervalConnection interval received in
the
L2CapConnectionUpdateRequest
event.
expected_connection_length_range: ExpectedConnectionLengthExpected length of connection event needed for this connection.
identifier: u8Identifier received in the
L2CapConnectionUpdateRequest
event.
accepted: boolTrue if the parameters from the event are acceptable.
Auto Trait Implementations§
impl RefUnwindSafe for ConnectionParameterUpdateResponse
impl Send for ConnectionParameterUpdateResponse
impl Sync for ConnectionParameterUpdateResponse
impl Unpin for ConnectionParameterUpdateResponse
impl UnwindSafe for ConnectionParameterUpdateResponse
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