Derive Debug instead of Show
This commit is contained in:
parent
55ebfaaa7c
commit
867863cf11
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ use std::fmt;
|
||||||
pub type ZipResult<T> = Result<T, ZipError>;
|
pub type ZipResult<T> = Result<T, ZipError>;
|
||||||
|
|
||||||
/// Error type for Zip
|
/// Error type for Zip
|
||||||
#[derive(Show)]
|
#[derive(Debug)]
|
||||||
pub enum ZipError
|
pub enum ZipError
|
||||||
{
|
{
|
||||||
/// An Error caused by I/O
|
/// An Error caused by I/O
|
||||||
|
|
Loading…
Add table
Reference in a new issue