twilight-cache-inmemory 0.17.1

In-process-memory based cache for the Twilight ecosystem.
Documentation
//! Models built for utilizing efficient caching.

pub mod message;

mod emoji;
mod guild;
pub(crate) mod member;
mod presence;
mod sticker;
mod voice_state;

pub use self::{
    emoji::CachedEmoji,
    guild::CachedGuild,
    member::{CachedMember, ComputedInteractionMember},
    message::CachedMessage,
    presence::CachedPresence,
    sticker::CachedSticker,
    voice_state::CachedVoiceState,
};