[][src]Struct bluetooth_hci::host::ConnectionUpdateParameters

pub struct ConnectionUpdateParameters {
    pub conn_handle: ConnectionHandle,
    pub conn_interval: ConnectionInterval,
    pub expected_connection_length: ExpectedConnectionLength,
}

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.