https://github.com/jonhoo/tokio-byteorder
Asynchronous adapter for byteorder
https://github.com/jonhoo/tokio-byteorder
Last synced: over 1 year ago
JSON representation
Asynchronous adapter for byteorder
- Host: GitHub
- URL: https://github.com/jonhoo/tokio-byteorder
- Owner: jonhoo
- License: mit
- Created: 2019-09-05T21:04:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-10T03:11:13.000Z (over 5 years ago)
- Last Synced: 2025-03-15T14:56:01.565Z (over 1 year ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 19
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
[](https://crates.io/crates/tokio-byteorder)
[](https://docs.rs/tokio-byteorder/)
[](https://dev.azure.com/jonhoo/jonhoo/_build/latest?definitionId=12&branchName=master)
[](https://codecov.io/gh/jonhoo/tokio-byteorder)
[](https://deps.rs/repo/github/jonhoo/tokio-byteorder)
This crate provides convenience methods for encoding and decoding numbers in
either [big-endian or little-endian order] on top of asynchronous I/O streams.
It owes everything to the magnificent [`byteorder`] crate. This crate only
provides a shim to [`AsyncRead`] and [`AsyncWrite`].
[big-endian or little-endian order]: https://en.wikipedia.org/wiki/Endianness
[`byteorder`]: https://github.com/BurntSushi/byteorder/
[`AsyncRead`]: https://docs.rs/tokio/0.2.0-alpha.4/tokio/io/trait.AsyncRead.html
[`AsyncWrite`]: https://docs.rs/tokio/0.2.0-alpha.4/tokio/io/trait.AsyncWrite.html