diff options
| author | Zeyla Hellyer <[email protected]> | 2017-11-11 10:05:33 -0800 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-11-11 10:05:33 -0800 |
| commit | 348d52b50780109a77a5223d2ede8e0b9a490cfd (patch) | |
| tree | 1049f8ab6be8f9b22ec69a3746ae37a90c6f6a62 /src/model/guild/audit_log.rs | |
| parent | Simplify Error's `Display` impl (diff) | |
| download | serenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.tar.xz serenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.zip | |
Re-order use statements alphabetically
Diffstat (limited to 'src/model/guild/audit_log.rs')
| -rw-r--r-- | src/model/guild/audit_log.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/guild/audit_log.rs b/src/model/guild/audit_log.rs index b3caa73..51138e0 100644 --- a/src/model/guild/audit_log.rs +++ b/src/model/guild/audit_log.rs @@ -1,8 +1,8 @@ -use super::super::{AuditLogEntryId, User, UserId, ChannelId, Webhook}; use serde::de::{self, Deserialize, Deserializer, MapAccess, Visitor}; -use std::fmt; +use super::super::{AuditLogEntryId, User, UserId, ChannelId, Webhook}; use std::collections::HashMap; use std::mem::transmute; +use std::fmt; /// Determines to what entity an action was used on. #[derive(Debug)] |