summaryrefslogtreecommitdiffstats
path: root/examples/containercopyinto.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/containercopyinto.rs')
-rw-r--r--examples/containercopyinto.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/containercopyinto.rs b/examples/containercopyinto.rs
index df56ca2..fb2de50 100644
--- a/examples/containercopyinto.rs
+++ b/examples/containercopyinto.rs
@@ -11,13 +11,12 @@ fn main() {
.nth(2)
.expect("Usage: cargo run --example containercopyinto -- <local path> <container>");
-
- use std::fs::File;
- use std::io::prelude::*;
+ use std::{fs::File, io::prelude::*};
let mut file = File::open(&path).unwrap();
let mut bytes = Vec::new();
- file.read_to_end(&mut bytes).expect("Cannot read file on the localhost.");
+ file.read_to_end(&mut bytes)
+ .expect("Cannot read file on the localhost.");
let fut = docker
.containers()