pub enum SlashCommandInputCompletion {
Directory,
Unknown,
}Expand description
Optional completion hint for the input (e.g. ‘directory’ for filesystem path completion)
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Directory
Input should complete filesystem directories.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for SlashCommandInputCompletion
impl Clone for SlashCommandInputCompletion
Source§fn clone(&self) -> SlashCommandInputCompletion
fn clone(&self) -> SlashCommandInputCompletion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SlashCommandInputCompletion
impl Debug for SlashCommandInputCompletion
Source§impl Default for SlashCommandInputCompletion
impl Default for SlashCommandInputCompletion
Source§fn default() -> SlashCommandInputCompletion
fn default() -> SlashCommandInputCompletion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SlashCommandInputCompletion
impl<'de> Deserialize<'de> for SlashCommandInputCompletion
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
impl Eq for SlashCommandInputCompletion
Source§impl PartialEq for SlashCommandInputCompletion
impl PartialEq for SlashCommandInputCompletion
Source§fn eq(&self, other: &SlashCommandInputCompletion) -> bool
fn eq(&self, other: &SlashCommandInputCompletion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SlashCommandInputCompletion
Auto Trait Implementations§
impl Freeze for SlashCommandInputCompletion
impl RefUnwindSafe for SlashCommandInputCompletion
impl Send for SlashCommandInputCompletion
impl Sync for SlashCommandInputCompletion
impl Unpin for SlashCommandInputCompletion
impl UnsafeUnpin for SlashCommandInputCompletion
impl UnwindSafe for SlashCommandInputCompletion
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