Enum discord_flows::model::guild::GuildContainer
source · pub enum GuildContainer {
Guild(PartialGuild),
Id(GuildId),
}Expand description
A container for guilds.
This is used to differentiate whether a guild itself can be used or whether a guild needs to be retrieved from the cache.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Guild(PartialGuild)
A guild which can have its contents directly searched.
Id(GuildId)
A guild’s id, which can be used to search the cache for a guild.
Trait Implementations§
source§impl Clone for GuildContainer
impl Clone for GuildContainer
source§fn clone(&self) -> GuildContainer
fn clone(&self) -> GuildContainer
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GuildContainer
impl Debug for GuildContainer
source§impl From<GuildId> for GuildContainer
impl From<GuildId> for GuildContainer
source§fn from(guild_id: GuildId) -> GuildContainer
fn from(guild_id: GuildId) -> GuildContainer
Converts to this type from the input type.
source§impl From<PartialGuild> for GuildContainer
impl From<PartialGuild> for GuildContainer
source§fn from(guild: PartialGuild) -> GuildContainer
fn from(guild: PartialGuild) -> GuildContainer
Converts to this type from the input type.
source§impl From<u64> for GuildContainer
impl From<u64> for GuildContainer
source§fn from(id: u64) -> GuildContainer
fn from(id: u64) -> GuildContainer
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for GuildContainer
impl Send for GuildContainer
impl Sync for GuildContainer
impl Unpin for GuildContainer
impl UnwindSafe for GuildContainer
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more