pub trait PeripheralImpl: Send + Sync {
type Peripheral: PeripheralImpl + Send + Sync;
// Required methods
fn new<'async_trait>(
sender_tx: Sender<PeripheralEvent>,
) -> Pin<Box<dyn Future<Output = Result<Peripheral, Error>> + Send + 'async_trait>>;
fn is_powered<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn is_advertising<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn start_advertising<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
uuids: &'life2 [Uuid],
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn stop_advertising<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn add_service<'life0, 'life1, 'async_trait>(
&'life0 mut self,
service: &'life1 Service,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn update_characteristic<'life0, 'async_trait>(
&'life0 mut self,
characteristic: Uuid,
value: Vec<u8>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Required Associated Types§
type Peripheral: PeripheralImpl + Send + Sync
Required Methods§
fn new<'async_trait>( sender_tx: Sender<PeripheralEvent>, ) -> Pin<Box<dyn Future<Output = Result<Peripheral, Error>> + Send + 'async_trait>>
fn is_powered<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn is_advertising<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn start_advertising<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
name: &'life1 str,
uuids: &'life2 [Uuid],
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn stop_advertising<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn add_service<'life0, 'life1, 'async_trait>(
&'life0 mut self,
service: &'life1 Service,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn update_characteristic<'life0, 'async_trait>(
&'life0 mut self,
characteristic: Uuid,
value: Vec<u8>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.