Trait unicom::Connection

source ·
pub trait Connection: AsyncRead + AsyncWrite + Send + Unpin { }
Expand description

The established connection between backend and device

Implementors§

source§

impl<T> Connection for T
where T: AsyncRead + AsyncWrite + Send + Unpin,