diff options
| author | thelearnerofcode <[email protected]> | 2017-11-07 14:51:57 -0800 |
|---|---|---|
| committer | thelearnerofcode <[email protected]> | 2017-11-07 14:51:57 -0800 |
| commit | e5a6f3a8ed367bd3d780fd23a0a27f8a80567879 (patch) | |
| tree | 9b51a6cd25ec63f8a0b2143827e675b04f9bb1af /src/internal/timer.rs | |
| parent | Into<String> -> Display (diff) | |
| download | serenity-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.rs | 1 |
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, |