trouble-host

Crates

git

Versions

default

Flavors

Struct Connection

Source
pub struct Connection<'stack> { /* private fields */ }
Expand description

Handle to a BLE connection.

When the last reference to a connection is dropped, the connection is automatically disconnected.

Implementations§

Source§

impl<'stack> Connection<'stack>

Source

pub async fn next(&self) -> ConnectionEvent<'stack>

Wait for next connection event.

Source

pub fn is_connected(&self) -> bool

Check if still connected

Source

pub fn handle(&self) -> ConnHandle

Connection handle of this connection.

Source

pub fn att_mtu(&self) -> u16

Expose the att_mtu.

Source

pub fn role(&self) -> LeConnRole

The connection role for this connection.

Source

pub fn peer_address(&self) -> BdAddr

The peer address for this connection.

Source

pub fn encrypted(&self) -> bool

Get the encrypted state of the connection

Source

pub fn disconnect(&self)

Request connection to be disconnected.

Source

pub async fn rssi<T>( &self, stack: &Stack<'_, T>, ) -> Result<i8, BleHostError<T::Error>>

The RSSI value for this connection.

Source

pub async fn set_phy<T>( &self, stack: &Stack<'_, T>, phy: PhyKind, ) -> Result<(), BleHostError<T::Error>>

Update phy for this connection.

This updates both TX and RX phy of the connection. For more fine grained control, use the LeSetPhy HCI command directly.

Source

pub async fn read_phy<T>( &self, stack: &Stack<'_, T>, ) -> Result<(PhyKind, PhyKind), BleHostError<T::Error>>

Read the current phy used for the connection.

Source

pub async fn update_connection_params<T>( &self, stack: &Stack<'_, T>, params: &ConnectParams, ) -> Result<(), BleHostError<T::Error>>

Update connection parameters for this connection.

Source

pub fn with_attribute_server<'values, 'server, M: RawMutex, const ATT_MAX: usize, const CCCD_MAX: usize, const CONN_MAX: usize>( self, server: &'server AttributeServer<'values, M, ATT_MAX, CCCD_MAX, CONN_MAX>, ) -> Result<GattConnection<'stack, 'server>, Error>

Transform BLE connection into a GattConnection

Trait Implementations§

Source§

impl Clone for Connection<'_>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Drop for Connection<'_>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'stack> Freeze for Connection<'stack>

§

impl<'stack> !RefUnwindSafe for Connection<'stack>

§

impl<'stack> !Send for Connection<'stack>

§

impl<'stack> !Sync for Connection<'stack>

§

impl<'stack> Unpin for Connection<'stack>

§

impl<'stack> !UnwindSafe for Connection<'stack>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.