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/framework/standard/create_command.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/framework/standard/create_command.rs')
| -rw-r--r-- | src/framework/standard/create_command.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/framework/standard/create_command.rs b/src/framework/standard/create_command.rs index c1558ce..4788a05 100644 --- a/src/framework/standard/create_command.rs +++ b/src/framework/standard/create_command.rs @@ -5,6 +5,7 @@ use std::sync::Arc; use client::Context; use model::{Message, Permissions}; +#[derive(Debug)] pub struct CreateCommand(pub Command); impl CreateCommand { |