twilight_cache_inmemory/
traits.rs1use crate::model::member::ComputedInteractionMember;
26use std::fmt::Debug;
27use twilight_model::{
28 application::interaction::InteractionMember,
29 channel::{
30 message::{Reaction, Sticker},
31 Channel, ChannelType, Message, StageInstance,
32 },
33 gateway::{
34 payload::incoming::{GuildUpdate, MemberUpdate},
35 presence::Presence,
36 },
37 guild::{
38 scheduled_event::GuildScheduledEvent, Emoji, Guild, GuildIntegration, Member,
39 PartialMember, Role,
40 },
41 id::{
42 marker::{
43 ChannelMarker, GuildMarker, RoleMarker, ScheduledEventMarker, StickerMarker, UserMarker,
44 },
45 Id,
46 },
47 user::{CurrentUser, User},
48 util::{ImageHash, Timestamp},
49 voice::VoiceState,
50};
51#[cfg(feature = "permission-calculator")]
52use twilight_model::{channel::permission_overwrite::PermissionOverwrite, guild::Permissions};
53
54pub trait CacheableModels: Clone + Debug {
56 type Channel: CacheableChannel;
58 type CurrentUser: CacheableCurrentUser;
60 type Emoji: CacheableEmoji;
62 type Guild: CacheableGuild;
64 type GuildIntegration: CacheableGuildIntegration;
66 type GuildScheduledEvent: CacheableGuildScheduledEvent;
68 type Member: CacheableMember;
70 type Message: CacheableMessage;
72 type Presence: CacheablePresence;
74 type Role: CacheableRole;
76 type StageInstance: CacheableStageInstance;
78 type Sticker: CacheableSticker;
80 type User: CacheableUser;
82 type VoiceState: CacheableVoiceState;
84}
85
86pub trait CacheableMember:
88 From<Member>
89 + From<ComputedInteractionMember>
90 + From<(Id<UserMarker>, PartialMember)>
91 + PartialEq<Member>
92 + PartialEq<PartialMember>
93 + PartialEq<InteractionMember>
94 + PartialEq<Self>
95 + Clone
96 + Debug
97{
98 fn roles(&self) -> &[Id<RoleMarker>];
100
101 #[cfg(feature = "permission-calculator")]
103 fn communication_disabled_until(&self) -> Option<Timestamp>;
104
105 fn avatar(&self) -> Option<ImageHash>;
107
108 fn deaf(&self) -> Option<bool>;
110
111 fn mute(&self) -> Option<bool>;
113
114 fn update_with_member_update(&mut self, member_update: &MemberUpdate);
116}
117
118pub trait CacheableRole: From<Role> + PartialEq<Role> + PartialEq<Self> + Clone + Debug {
120 fn position(&self) -> i64;
122
123 fn id(&self) -> Id<RoleMarker>;
125
126 #[cfg(feature = "permission-calculator")]
128 fn permissions(&self) -> Permissions;
129}
130
131impl CacheableRole for Role {
132 fn position(&self) -> i64 {
133 self.position
134 }
135
136 fn id(&self) -> Id<RoleMarker> {
137 self.id
138 }
139
140 #[cfg(feature = "permission-calculator")]
141 fn permissions(&self) -> Permissions {
142 self.permissions
143 }
144}
145
146pub trait CacheableChannel:
148 From<Channel> + PartialEq<Channel> + PartialEq<Self> + Clone + Debug
149{
150 fn guild_id(&self) -> Option<Id<GuildMarker>>;
152
153 fn kind(&self) -> ChannelType;
155
156 #[cfg(feature = "permission-calculator")]
158 fn parent_id(&self) -> Option<Id<ChannelMarker>>;
159
160 fn id(&self) -> Id<ChannelMarker>;
162
163 #[cfg(feature = "permission-calculator")]
165 fn permission_overwrites(&self) -> Option<&[PermissionOverwrite]>;
166
167 fn set_last_pin_timestamp(&mut self, timestamp: Option<Timestamp>);
169}
170
171impl CacheableChannel for Channel {
172 fn guild_id(&self) -> Option<Id<GuildMarker>> {
173 self.guild_id
174 }
175
176 fn kind(&self) -> ChannelType {
177 self.kind
178 }
179
180 #[cfg(feature = "permission-calculator")]
181 fn parent_id(&self) -> Option<Id<ChannelMarker>> {
182 self.parent_id
183 }
184
185 fn id(&self) -> Id<ChannelMarker> {
186 self.id
187 }
188
189 #[cfg(feature = "permission-calculator")]
190 fn permission_overwrites(&self) -> Option<&[PermissionOverwrite]> {
191 self.permission_overwrites.as_deref()
192 }
193
194 fn set_last_pin_timestamp(&mut self, timestamp: Option<Timestamp>) {
195 self.last_pin_timestamp = timestamp;
196 }
197}
198
199pub trait CacheableGuild: From<Guild> + PartialEq<Guild> + PartialEq<Self> + Clone + Debug {
201 fn id(&self) -> Id<GuildMarker>;
203
204 #[cfg(feature = "permission-calculator")]
206 fn owner_id(&self) -> Id<UserMarker>;
207
208 fn set_unavailable(&mut self, unavailable: Option<bool>);
210
211 fn update_with_guild_update(&mut self, guild_update: &GuildUpdate);
214
215 fn increase_member_count(&mut self, amount: u64);
217
218 fn decrease_member_count(&mut self, amount: u64);
220}
221
222pub trait CacheableVoiceState:
224 From<(Id<ChannelMarker>, Id<GuildMarker>, VoiceState)>
225 + PartialEq<VoiceState>
226 + PartialEq<Self>
227 + Clone
228 + Debug
229{
230 fn channel_id(&self) -> Id<ChannelMarker>;
232}
233
234pub trait CacheableMessage:
236 From<Message> + PartialEq<Message> + PartialEq<Self> + Clone + Debug
237{
238 fn reactions(&self) -> &[Reaction];
240
241 fn reactions_mut(&mut self) -> &mut [Reaction];
243
244 fn retain_reactions(&mut self, f: impl FnMut(&Reaction) -> bool);
246
247 fn clear_reactions(&mut self);
249
250 fn add_reaction(&mut self, reaction: Reaction);
252
253 fn remove_reaction(&mut self, idx: usize);
255}
256
257pub trait CacheableCurrentUser:
259 From<CurrentUser> + PartialEq<CurrentUser> + PartialEq<Self> + Clone + Debug
260{
261 fn id(&self) -> Id<UserMarker>;
263}
264
265impl CacheableCurrentUser for CurrentUser {
266 fn id(&self) -> Id<UserMarker> {
267 self.id
268 }
269}
270
271pub trait CacheableSticker:
273 From<Sticker> + PartialEq<Sticker> + PartialEq<Self> + Clone + Debug
274{
275 fn id(&self) -> Id<StickerMarker>;
277}
278
279pub trait CacheableEmoji: From<Emoji> + PartialEq<Emoji> + PartialEq<Self> + Clone + Debug {}
281
282pub trait CacheableGuildIntegration:
284 From<GuildIntegration> + PartialEq<GuildIntegration> + PartialEq<Self> + Clone + Debug
285{
286}
287
288impl CacheableGuildIntegration for GuildIntegration {}
289
290pub trait CacheablePresence:
292 From<Presence> + PartialEq<Presence> + PartialEq<Self> + Clone + Debug
293{
294}
295
296pub trait CacheableStageInstance:
298 From<StageInstance> + PartialEq<StageInstance> + PartialEq<Self> + Clone + Debug
299{
300}
301
302impl CacheableStageInstance for StageInstance {}
303
304pub trait CacheableUser: From<User> + PartialEq<User> + PartialEq<Self> + Clone + Debug {}
306
307impl CacheableUser for User {}
308
309pub trait CacheableGuildScheduledEvent:
311 From<GuildScheduledEvent> + PartialEq<GuildScheduledEvent> + PartialEq<Self> + Clone + Debug
312{
313 fn add_user(
315 &mut self,
316 guild_id: Id<GuildMarker>,
317 event_id: Id<ScheduledEventMarker>,
318 user_id: Id<UserMarker>,
319 );
320
321 fn remove_user(
323 &mut self,
324 guild_id: Id<GuildMarker>,
325 event_id: Id<ScheduledEventMarker>,
326 user_id: Id<UserMarker>,
327 );
328}
329
330impl CacheableGuildScheduledEvent for GuildScheduledEvent {
331 fn add_user(
332 &mut self,
333 _guild_id: Id<GuildMarker>,
334 _event_id: Id<ScheduledEventMarker>,
335 _user_id: Id<UserMarker>,
336 ) {
337 self.user_count = self.user_count.map(|count| count.saturating_add(1));
338 }
339
340 fn remove_user(
341 &mut self,
342 _guild_id: Id<GuildMarker>,
343 _event_id: Id<ScheduledEventMarker>,
344 _user_id: Id<UserMarker>,
345 ) {
346 self.user_count = self.user_count.map(|count| count.saturating_sub(1));
347 }
348}