This is a fork of byteorder with the addition of:
tokio::io
futures::io
for futures::io
toml
byteorder_async = {version="1.1.0", features=["futures_async"] }
for tokio::io
toml
byteorder_async = {version="1.1.0", features=["tokio_async"] }
Basic async usage:
```rust use byteorder_async::ReaderToByteOrder;
let reader : io::AsyncRead = ...; // after the byteorder its the same calls. let byte = reader.byteorder().read_u8().await; ```
Note:
Thre reason for the byte_order()
call is because async fn
is not supprted in traits yet.