Crates.io | iobuffer |
lib.rs | iobuffer |
version | 0.2.0 |
source | src |
created_at | 2018-04-20 09:40:25.538352 |
updated_at | 2020-03-19 14:26:00.723967 |
description | A simple memory-based buffer for IO reading and writing |
homepage | https://github.com/Metaswitch/iobuffer |
repository | https://github.com/Metaswitch/iobuffer |
max_upload_size | |
id | 61537 |
size | 22,221 |
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 astd::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 for more information.