#[non_exhaustive]pub enum GuildIntegrationType {
Discord,
Twitch,
YouTube,
GuildSubscription,
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.
GuildSubscription
Integration is a Guild Subscription.
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 for GuildIntegrationType
impl PartialEq for GuildIntegrationType
source§impl Serialize for GuildIntegrationType
impl Serialize for GuildIntegrationType
impl Eq for GuildIntegrationType
impl StructuralPartialEq for GuildIntegrationType
Auto Trait Implementations§
impl Freeze for GuildIntegrationType
impl RefUnwindSafe for GuildIntegrationType
impl Send for GuildIntegrationType
impl Sync for GuildIntegrationType
impl Unpin for GuildIntegrationType
impl UnwindSafe for GuildIntegrationType
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)