From eb98b1916c0220e44e2d0f3c869c01a2dd037f60 Mon Sep 17 00:00:00 2001 From: Marc Schreiber Date: Mon, 25 Feb 2019 15:27:21 +0100 Subject: Apply rust format to fix CI checks (#153) --- examples/containercopyinto.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'examples') 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 -- "); - - 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() -- cgit v1.2.3