Silence deprecation warnings by casting
This commit is contained in:
parent
da87ac43e9
commit
0f12de0388
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ impl ZipError
|
||||||
match *self
|
match *self
|
||||||
{
|
{
|
||||||
ZipError::Io(ref io_err) => {
|
ZipError::Io(ref io_err) => {
|
||||||
("Io Error: ".to_string() + io_err.description()).into_cow()
|
("Io Error: ".to_string() + (io_err as &error::Error).description()).into_cow()
|
||||||
},
|
},
|
||||||
ZipError::InvalidArchive(msg) | ZipError::UnsupportedArchive(msg) => {
|
ZipError::InvalidArchive(msg) | ZipError::UnsupportedArchive(msg) => {
|
||||||
(self.description().to_string() + ": " + msg).into_cow()
|
(self.description().to_string() + ": " + msg).into_cow()
|
||||||
|
@ -68,7 +68,7 @@ impl error::Error for ZipError
|
||||||
{
|
{
|
||||||
match *self
|
match *self
|
||||||
{
|
{
|
||||||
ZipError::Io(ref io_err) => io_err.description(),
|
ZipError::Io(ref io_err) => (io_err as &error::Error).description(),
|
||||||
ZipError::InvalidArchive(..) => "Invalid Zip archive",
|
ZipError::InvalidArchive(..) => "Invalid Zip archive",
|
||||||
ZipError::UnsupportedArchive(..) => "Unsupported Zip archive",
|
ZipError::UnsupportedArchive(..) => "Unsupported Zip archive",
|
||||||
ZipError::FileNotFound => "Specified file not found in archive",
|
ZipError::FileNotFound => "Specified file not found in archive",
|
||||||
|
|
Loading…
Add table
Reference in a new issue