Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.42 KB

README.md

File metadata and controls

50 lines (31 loc) · 1.42 KB

vecio

Unix Status Windows status crates.io

Vector IO, scatter/gather, readv, writev

Works on file descriptors on Unix, and sockets on Windows.

Example

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();
}

Details

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.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.