pub trait HostConnection {
// Required methods
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
username: String,
password: String,
keep_alive_interval_in_secs: u64,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn publish<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
topic: String,
payload: Payload,
qos: Qos,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn drop<'life0, 'async_trait>(
&'life0 mut self,
rep: Resource<Connection>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
Sourcefn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
username: String,
password: String,
keep_alive_interval_in_secs: u64,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
username: String,
password: String,
keep_alive_interval_in_secs: u64,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Open a connection to the Mqtt instance at address
.
Sourcefn publish<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
topic: String,
payload: Payload,
qos: Qos,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn publish<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
topic: String,
payload: Payload,
qos: Qos,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Publish an Mqtt message to the specified topic
.
fn drop<'life0, 'async_trait>(
&'life0 mut self,
rep: Resource<Connection>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Implementations on Foreign Types§
Source§impl<_T: HostConnection + ?Sized + Send> HostConnection for &mut _T
impl<_T: HostConnection + ?Sized + Send> HostConnection for &mut _T
Source§fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
username: String,
password: String,
keep_alive_interval_in_secs: u64,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
address: String,
username: String,
password: String,
keep_alive_interval_in_secs: u64,
) -> Pin<Box<dyn Future<Output = Result<Resource<Connection>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Open a connection to the Mqtt instance at address
.
Source§fn publish<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
topic: String,
payload: Payload,
qos: Qos,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn publish<'life0, 'async_trait>(
&'life0 mut self,
self_: Resource<Connection>,
topic: String,
payload: Payload,
qos: Qos,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Publish an Mqtt message to the specified topic
.