Expand description
Dynamic traits for sync or async use depending on the Cargo features used.
The ReadWrite
trait is the set of traits used by the Client to read/write to a TLS
stream.
The exact composition of the set is dependent on the Cargo feature flags used to compile this crate.
Feature Flag | Traits included in the ReadWrite trait |
---|---|
sync (default) | std::io::Read + std::io::Write |
async-with-tokio | tokio::io::AsyncReadExt + tokio::io::AsyncWriteExt + std::marker::Unpin |
async-with-async-std | async_std::io::ReadExt + async_std::io::WriteExt + std::marker::Unpin |
This enables code that is otherwise identical to be re-used.