aboutsummaryrefslogtreecommitdiff
path: root/src/utils/builder/edit_channel.rs
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2017-05-14 21:50:17 -0700
committerZeyla Hellyer <[email protected]>2017-05-22 16:44:46 -0700
commit9dae9e67b992cea4c18f1c685f5185abd9428887 (patch)
tree0021934890c7e48183b6a98b65601793dcbc8376 /src/utils/builder/edit_channel.rs
parentRemove more remaining selfbot support (diff)
downloadserenity-9dae9e67b992cea4c18f1c685f5185abd9428887.tar.xz
serenity-9dae9e67b992cea4c18f1c685f5185abd9428887.zip
Reasonably derive Debug on items
Diffstat (limited to 'src/utils/builder/edit_channel.rs')
-rw-r--r--src/utils/builder/edit_channel.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/builder/edit_channel.rs b/src/utils/builder/edit_channel.rs
index 2fa61a5..4d0955e 100644
--- a/src/utils/builder/edit_channel.rs
+++ b/src/utils/builder/edit_channel.rs
@@ -23,7 +23,7 @@ use ::internal::prelude::*;
/// [`Context::edit_channel`]: ../client/struct.Context.html#method.edit_channel
/// [`GuildChannel`]: ../model/struct.GuildChannel.html
/// [`GuildChannel::edit`]: ../model/struct.GuildChannel.html#method.edit
-#[derive(Default)]
+#[derive(Clone, Debug, Default)]
pub struct EditChannel(pub JsonMap);
impl EditChannel {