pub type ModalInteractionUserSelect = ModalInteractionSelectMenu<Id<UserMarker>>;Expand description
User filled in User Select.
See Discord Docs/User Select Interaction Response Structure.
Aliased Type§
pub struct ModalInteractionUserSelect {
pub id: i32,
pub custom_id: String,
pub values: Vec<Id<UserMarker>>,
}Fields§
§id: i32Unique identifier for the component.
custom_id: StringUser defined identifier for the component.
values: Vec<Id<UserMarker>>The selected values.
Trait Implementations§
Source§impl TryFrom<ModalInteractionComponent> for ModalInteractionUserSelect
impl TryFrom<ModalInteractionComponent> for ModalInteractionUserSelect
Source§type Error = ModalInteractionComponent
type Error = ModalInteractionComponent
The type returned in the event of a conversion error.