From 867863cf112e45b28f799e08e8bd934d8b91010a Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Tue, 3 Feb 2015 09:29:05 +0100 Subject: [PATCH] Derive Debug instead of Show --- src/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/result.rs b/src/result.rs index ee94913a..9575bfa2 100644 --- a/src/result.rs +++ b/src/result.rs @@ -8,7 +8,7 @@ use std::fmt; pub type ZipResult = Result; /// Error type for Zip -#[derive(Show)] +#[derive(Debug)] pub enum ZipError { /// An Error caused by I/O