diff options
| author | Austin Hellyer <[email protected]> | 2016-11-24 11:26:15 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-24 11:26:15 -0800 |
| commit | 290111a02f59f278374a482a8c8df12147ba4ea9 (patch) | |
| tree | a27137c29deb678557122119c882c84963d89604 /src/model/mod.rs | |
| parent | Ignore WebSocketError::NoDataAvailable (diff) | |
| download | serenity-290111a02f59f278374a482a8c8df12147ba4ea9.tar.xz serenity-290111a02f59f278374a482a8c8df12147ba4ea9.zip | |
Rename guild structs to Guild and PartialGuild
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index 7f8a6ea..880be42 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -141,7 +141,7 @@ pub enum Channel { /// a guild needs to be retrieved from the cache. pub enum GuildContainer { /// A guild which can have its contents directly searched. - Guild(Guild), + Guild(PartialGuild), /// A guild's id, which can be used to search the cache for a guild. Id(GuildId), } |