This project is developed and maintained by the HAL team.
Adapters between the embedded-io
and embedded-io-async
traits and other IO traits.
The adapters are structs that wrap an I/O stream and implement another family of I/O traits
based on the wrapped streams. This allows "converting" from an embedded_io::Read
to a std::io::Read
or vice versa, for example.
There are no separate adapters for Read
/ReadBuf
/Write
traits. Instead, a single
adapter implements the right traits based on what the inner type implements.
This allows using these adapters when using combinations of traits, like Read+Write
.
For embedded-io
:
std::io
traits. Needs thestd
feature.
For embedded-io-async
:
futures
0.3 traits. Needs thefutures-03
feature.tokio
1.x traits. Needs thetokio-1
feature.
This crate is guaranteed to compile on stable Rust 1.60 and up. It might compile with older versions but that may change in any new patch release.
See here for details on how the MSRV may be upgraded.
Enabling any of the tokio-*
or futures-*
Cargo features requires Rust 1.75 or higher.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.