pub trait Api<C: Send + Sync> {
// Required methods
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
device: String,
baudrate: Baudrate,
address: String,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<GetResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_multi<'life0, 'life1, 'async_trait>(
&'life0 self,
device: String,
baudrate: Baudrate,
address: String,
maxframes: i32,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<GetMultiResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn hat<'life0, 'life1, 'async_trait>(
&'life0 self,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<HatResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn hat_off<'life0, 'life1, 'async_trait>(
&'life0 self,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<HatOffResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn hat_on<'life0, 'life1, 'async_trait>(
&'life0 self,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<HatOnResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn mbus_api<'life0, 'life1, 'async_trait>(
&'life0 self,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<MbusApiResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn scan<'life0, 'life1, 'async_trait>(
&'life0 self,
device: String,
baudrate: Baudrate,
context: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<ScanResponse, ApiError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
// Provided method
fn poll_ready(
&self,
_cx: &mut Context<'_>,
) -> Poll<Result<(), Box<dyn Error + Send + Sync + 'static>>> { ... }
}
Expand description
API