summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-11-21 15:17:53 +0100
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2017-11-21 15:17:53 +0100
commit13429a6ab9d6c7d9132c1330b729dff0b3787757 (patch)
tree06aeaa06806a539a67cdf717075187b63ec2d997
parentad934d47c97c933eebb038816803af70a27bb536 (diff)
Let Vcard derive Debug (#20)
-rw-r--r--src/vcard.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vcard.rs b/src/vcard.rs
index fece8a2..4191adc 100644
--- a/src/vcard.rs
+++ b/src/vcard.rs
@@ -8,6 +8,7 @@ use property::Property;
use std::result::Result as RResult;
use error::*;
+#[derive(Debug)]
pub struct Vcard(Component);
/// The Vcard object.