We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad58c3f commit 9549110Copy full SHA for 9549110
src/model/guild/mod.rs
@@ -273,6 +273,10 @@ pub struct Guild {
273
#[serde(deserialize_with = "deserialize_guild_channels")]
274
pub channels: HashMap<ChannelId, GuildChannel>,
275
/// All active threads in this guild that current user has permission to view.
276
+ ///
277
+ /// A thread is guaranteed (for errors, not for panics) to be cached if a `MESSAGE_CREATE`
278
+ /// event is fired in said thread, however an `INTERACTION_CREATE` may not have a private
279
+ /// thread in cache.
280
pub threads: Vec<GuildChannel>,
281
/// A mapping of [`User`]s' Ids to their current presences.
282
///
0 commit comments