#[non_exhaustive]
pub enum GuildIntegrationType {
Discord,
Twitch,
YouTube,
Unknown(String),
}Expand description
Special and optional guild features.
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.
Discord
Integration is a Discord application.
Twitch
Integration is a Twitch connection.
YouTube
Integration is a YouTube connection.
Unknown(String)
Variant value is unknown to the library.
Trait Implementations§
source§impl Clone for GuildIntegrationType
impl Clone for GuildIntegrationType
source§fn clone(&self) -> GuildIntegrationType
fn clone(&self) -> GuildIntegrationType
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 GuildIntegrationType
impl Debug for GuildIntegrationType
source§impl<'de> Deserialize<'de> for GuildIntegrationType
impl<'de> Deserialize<'de> for GuildIntegrationType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<GuildIntegrationType> for Cow<'static, str>
impl From<GuildIntegrationType> for Cow<'static, str>
source§fn from(value: GuildIntegrationType) -> Self
fn from(value: GuildIntegrationType) -> Self
Converts to this type from the input type.
source§impl From<String> for GuildIntegrationType
impl From<String> for GuildIntegrationType
source§impl Hash for GuildIntegrationType
impl Hash for GuildIntegrationType
source§impl PartialEq<GuildIntegrationType> for GuildIntegrationType
impl PartialEq<GuildIntegrationType> for GuildIntegrationType
source§fn eq(&self, other: &GuildIntegrationType) -> bool
fn eq(&self, other: &GuildIntegrationType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.