From 80fd4b6dcffcdcfae164d255173e63831c415631 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Thu, 2 Apr 2015 20:50:50 +0200 Subject: [PATCH] Update to new (io::)Error --- src/crc32.rs | 2 +- src/lib.rs | 2 +- src/result.rs | 6 +++--- src/write.rs | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/crc32.rs b/src/crc32.rs index 8f7503c8..008ead98 100644 --- a/src/crc32.rs +++ b/src/crc32.rs @@ -95,7 +95,7 @@ impl Read for Crc32Reader { let count = match self.inner.read(buf) { - Ok(0) if !self.check_matches() => { return Err(io::Error::new(io::ErrorKind::Other, "Invalid checksum", None)) }, + Ok(0) if !self.check_matches() => { return Err(io::Error::new(io::ErrorKind::Other, "Invalid checksum")) }, Ok(n) => n, Err(e) => return Err(e), }; diff --git a/src/lib.rs b/src/lib.rs index 721fe26b..d1d1e182 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![feature(unsafe_destructor)] #![warn(missing_docs)] -#![feature(io, convert, step_by)] +#![feature(step_by)] extern crate time; extern crate flate2; diff --git a/src/result.rs b/src/result.rs index c706cafc..29b608c8 100644 --- a/src/result.rs +++ b/src/result.rs @@ -28,7 +28,7 @@ impl ZipError { fn detail(&self) -> ::std::borrow::Cow { - use ::std::error::Error; + use std::error::Error; match *self { @@ -45,9 +45,9 @@ impl ZipError } } -impl error::FromError for ZipError +impl ::std::convert::From for ZipError { - fn from_error(err: io::Error) -> ZipError + fn from(err: io::Error) -> ZipError { ZipError::Io(err) } diff --git a/src/write.rs b/src/write.rs index 47022f7d..0f43f558 100644 --- a/src/write.rs +++ b/src/write.rs @@ -69,12 +69,12 @@ impl Write for ZipWriter { fn write(&mut self, buf: &[u8]) -> io::Result { - if self.files.len() == 0 { return Err(io::Error::new(io::ErrorKind::Other, "No file has been started", None)) } + if self.files.len() == 0 { return Err(io::Error::new(io::ErrorKind::Other, "No file has been started")) } self.stats.update(buf); match self.inner.ref_mut() { Some(ref mut w) => w.write(buf), - None => Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed", None)), + None => Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed")), } } @@ -83,7 +83,7 @@ impl Write for ZipWriter match self.inner.ref_mut() { Some(ref mut w) => w.flush(), - None => Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed", None)), + None => Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed")), } } } @@ -233,7 +233,7 @@ impl GenericZipWriter { match self.current_compression() { Some(method) if method == compression => return Ok(()), - None => try!(Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed", None))), + None => try!(Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed"))), _ => {}, } @@ -242,7 +242,7 @@ impl GenericZipWriter GenericZipWriter::Storer(w) => w, GenericZipWriter::Deflater(w) => try!(w.finish()), GenericZipWriter::Bzip2(w) => match w.into_inner() { Ok(r) => r, Err((_, err)) => try!(Err(err)) }, - GenericZipWriter::Closed => try!(Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed", None))), + GenericZipWriter::Closed => try!(Err(io::Error::new(io::ErrorKind::BrokenPipe, "ZipWriter was already closed"))), }; *self = match compression