Vector IO, scatter/gather, readv, writev
Works on file descriptors on Unix, and sockets on Windows.
```rust extern crate vecio;
use vecio::Rawv; use std::net::TcpStream;
fn main() { let mut stream = TcpStream::connect("0.0.0.0").unwrap(); stream.writev(&[b"foo", b"bar"]).unwrap(); } ```
There are 3 traits of import in vecio
:
Rawv
Writev
Readv
The Rawv
trait implements Writev
and Readv
for any type that implements either AsRawFd
or AsRawSocket
(unix and windows).
The Writev
and Readv
traits exist so that any type that needs a custom implementation can have one.
In simple cases, just import vecio::Rawv
will give the methods on the proper types.