aboutsummaryrefslogtreecommitdiff
path: root/src/internal/timer.rs
diff options
context:
space:
mode:
authorthelearnerofcode <[email protected]>2017-11-07 14:51:57 -0800
committerthelearnerofcode <[email protected]>2017-11-07 14:51:57 -0800
commite5a6f3a8ed367bd3d780fd23a0a27f8a80567879 (patch)
tree9b51a6cd25ec63f8a0b2143827e675b04f9bb1af /src/internal/timer.rs
parentInto<String> -> Display (diff)
downloadserenity-e5a6f3a8ed367bd3d780fd23a0a27f8a80567879.tar.xz
serenity-e5a6f3a8ed367bd3d780fd23a0a27f8a80567879.zip
Add Debug derives to more public types
Diffstat (limited to 'src/internal/timer.rs')
-rw-r--r--src/internal/timer.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/internal/timer.rs b/src/internal/timer.rs
index 6a8bf74..68d817a 100644
--- a/src/internal/timer.rs
+++ b/src/internal/timer.rs
@@ -2,6 +2,7 @@ use chrono::{DateTime, Duration, Utc};
use std::thread;
use std::time::Duration as StdDuration;
+#[derive(Debug)]
pub struct Timer {
due: DateTime<Utc>,
duration: Duration,