Trait BluetoothLink
Source pub trait BluetoothLink: Send + Sync {
// Required methods
fn send<'life0, 'async_trait>(
&'life0 self,
frame: BluetoothFrame,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn recv<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Option<BluetoothFrame>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn is_open(&self) -> bool;
fn close<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}