pub struct ConnectionUpdateParameters {
pub conn_handle: ConnectionHandle,
pub conn_interval: ConnectionInterval,
pub expected_connection_length: ExpectedConnectionLength,
}
Expand description
Parameters for the le_connection_update
command.
See the Bluetooth spec, Vol 2, Part E, Section 7.8.18.
Fields§
§conn_handle: ConnectionHandle
Handle for identifying a connection.
conn_interval: ConnectionInterval
Defines the connection interval, latency, and supervision timeout.
expected_connection_length: ExpectedConnectionLength
Information parameters providing the Controller with a hint about the expected minimum and maximum length of the connection events.
Auto Trait Implementations§
impl Freeze for ConnectionUpdateParameters
impl RefUnwindSafe for ConnectionUpdateParameters
impl Send for ConnectionUpdateParameters
impl Sync for ConnectionUpdateParameters
impl Unpin for ConnectionUpdateParameters
impl UnwindSafe for ConnectionUpdateParameters
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