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: ConnectionHandle
Connection handle received in the
L2CapConnectionUpdateRequest
event.
conn_interval: ConnectionInterval
Connection interval received in
the
L2CapConnectionUpdateRequest
event.
expected_connection_length_range: ExpectedConnectionLength
Expected length of connection event needed for this connection.
identifier: u8
Identifier received in the
L2CapConnectionUpdateRequest
event.
accepted: bool
True if the parameters from the event are acceptable.
Auto Trait Implementations§
impl Freeze for ConnectionParameterUpdateResponse
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