https://github.com/metaswitch/iobuffer
Rust crate iobuffer - a memory-based buffer which implements Write and Read traits.
https://github.com/metaswitch/iobuffer
Last synced: 5 months ago
JSON representation
Rust crate iobuffer - a memory-based buffer which implements Write and Read traits.
- Host: GitHub
- URL: https://github.com/metaswitch/iobuffer
- Owner: Metaswitch
- License: apache-2.0
- Created: 2018-04-17T10:38:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-19T14:24:09.000Z (about 6 years ago)
- Last Synced: 2025-01-20T10:41:09.862Z (about 1 year ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 1
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/Metaswitch/iobuffer)
[](https://crates.io/crates/iobuffer)
[](LICENSE)
# iobuffer
This repository contains a Rust crate `iobuffer`.
This is a memory-based buffer which implements both the `std::io::Write` and `std::io::Write` traits.
It is useful in testing - for crates whose interface takes a`std::io::Read` or `std::io::Write`,
using an `iobuffer::IoBuffer` instance allows tests to have full access to what has been read or written by the library.
See the documentation (as generated by `cargo doc`) or [source](src/lib.rs) for more information.
[Documentation (crates.io)](https://docs.rs/iobuffer).