Trait IntegrationTrait
Source pub trait IntegrationTrait {
// Required methods
fn uplink_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 UplinkEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn join_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 JoinEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn ack_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 AckEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn txack_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 TxAckEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn log_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 LogEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn status_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 StatusEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn location_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 LocationEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn integration_event<'life0, 'life1, 'async_trait>(
&'life0 self,
pl: &'life1 IntegrationEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}