aboutsummaryrefslogtreecommitdiff
path: root/src/transport.rs
blob: 2e7889ee7210463f3e07b01bb34462c71bd2cbb5 (plain)
1
2
3
4
5
6
7
8
pub trait Transport: embedded_io_async::Read + embedded_io_async::Write {}

impl<T> Transport for T
where
    T: embedded_io_async::Read + embedded_io_async::Write,
    <T as embedded_io_async::ErrorType>::Error: core::fmt::Debug,
{
}