Use Into instead of IntoCow

This commit is contained in:
Mathijs van de Nes 2015-04-02 10:10:05 +02:00
parent c185c0cd38
commit 4842d19dc9
2 changed files with 4 additions and 5 deletions

View file

@ -3,7 +3,7 @@
#![feature(unsafe_destructor)]
#![warn(missing_docs)]
#![feature(io, into_cow, step_by)]
#![feature(io, convert, step_by)]
extern crate time;
extern crate flate2;

View file

@ -29,18 +29,17 @@ impl ZipError
fn detail(&self) -> ::std::borrow::Cow<str>
{
use ::std::error::Error;
use ::std::borrow::IntoCow;
match *self
{
ZipError::Io(ref io_err) => {
("Io Error: ".to_string() + (io_err as &error::Error).description()).into_cow()
("Io Error: ".to_string() + (io_err as &error::Error).description()).into()
},
ZipError::InvalidArchive(msg) | ZipError::UnsupportedArchive(msg) => {
(self.description().to_string() + ": " + msg).into_cow()
(self.description().to_string() + ": " + msg).into()
},
ZipError::FileNotFound => {
self.description().into_cow()
self.description().into()
},
}
}