pub trait AsyncConnectable {
// Required method
fn connect_async<'life0, 'async_trait, M>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncMavConnection<M> + Sync + Send>>> + Send + 'async_trait>>
where M: Message + Sync + Send + 'async_trait,
Self: 'async_trait,
'life0: 'async_trait;
}
Available on crate feature
tokio-1
only.Required Methods§
fn connect_async<'life0, 'async_trait, M>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Box<dyn AsyncMavConnection<M> + Sync + Send>>> + Send + '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.
Implementors§
impl AsyncConnectable for ConnectionAddress
impl AsyncConnectable for FileConnectable
impl AsyncConnectable for SerialConnectable
Available on crate feature
direct-serial
only.impl AsyncConnectable for TcpConnectable
Available on crate feature
tcp
only.impl AsyncConnectable for UdpConnectable
Available on crate feature
udp
only.