#[non_exhaustive]pub enum ComponentType {
ActionRow,
Button,
TextSelectMenu,
TextInput,
UserSelectMenu,
RoleSelectMenu,
MentionableSelectMenu,
ChannelSelectMenu,
Unknown(u8),
}
Expand description
Type of Component
.
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.
ActionRow
Component is an ActionRow
.
Button
Component is an Button
.
TextSelectMenu
Component is a SelectMenu
with custom string options.
TextInput
Component is an TextInput
.
UserSelectMenu
Component is a SelectMenu
for users.
RoleSelectMenu
Component is a SelectMenu
for roles.
MentionableSelectMenu
Component is a SelectMenu
for mentionables.
ChannelSelectMenu
Component is a SelectMenu
for channels.
Unknown(u8)
Variant value is unknown to the library.
Implementations§
Trait Implementations§
source§impl Clone for ComponentType
impl Clone for ComponentType
source§fn clone(&self) -> ComponentType
fn clone(&self) -> ComponentType
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 ComponentType
impl Debug for ComponentType
source§impl<'de> Deserialize<'de> for ComponentType
impl<'de> Deserialize<'de> for ComponentType
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 Display for ComponentType
impl Display for ComponentType
source§impl From<ComponentType> for u8
impl From<ComponentType> for u8
source§fn from(value: ComponentType) -> Self
fn from(value: ComponentType) -> Self
Converts to this type from the input type.
source§impl From<u8> for ComponentType
impl From<u8> for ComponentType
source§impl Hash for ComponentType
impl Hash for ComponentType
source§impl PartialEq for ComponentType
impl PartialEq for ComponentType
source§impl Serialize for ComponentType
impl Serialize for ComponentType
impl Copy for ComponentType
impl Eq for ComponentType
impl StructuralPartialEq for ComponentType
Auto Trait Implementations§
impl Freeze for ComponentType
impl RefUnwindSafe for ComponentType
impl Send for ComponentType
impl Sync for ComponentType
impl Unpin for ComponentType
impl UnwindSafe for ComponentType
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
)