Read and write Vec<u8> with one function call.
Vec<u8>
```rust extern crate file;
fn main() { let data = file::get("someinputfile.dat").unwrap(); file::put("a.out", &data).unwrap(); } ```