Derive Debug instead of Show

This commit is contained in:
Mathijs van de Nes 2015-02-03 09:29:05 +01:00
parent 55ebfaaa7c
commit 867863cf11

View file

@ -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