Struct twilight_http::request::application::command::create_global_command::CreateGlobalCommand
source · [−]pub struct CreateGlobalCommand<'a> { /* private fields */ }Expand description
Create a new global command.
Implementations
sourceimpl<'a> CreateGlobalCommand<'a>
impl<'a> CreateGlobalCommand<'a>
sourcepub fn chat_input(
self,
name: &'a str,
description: &'a str
) -> Result<CreateGlobalChatInputCommand<'a>, CommandValidationError>
pub fn chat_input(
self,
name: &'a str,
description: &'a str
) -> Result<CreateGlobalChatInputCommand<'a>, CommandValidationError>
Create a new chat input global command.
The command name must only contain alphanumeric characters and lowercase
variants must be used where possible. Special characters - and _ are
allowed. The description must be between 1 and 100 characters in length.
Creating a command with the same name as an already-existing global command will overwrite the old command. See Discord Docs/Create Global Application Command.
Errors
Returns an error of type NameLengthInvalid or NameCharacterInvalid
if the command name is invalid.
Returns an error of type DescriptionInvalid if the
command description is not between 1 and 100 characters.
sourcepub fn message(
self,
name: &'a str
) -> Result<CreateGlobalMessageCommand<'a>, CommandValidationError>
pub fn message(
self,
name: &'a str
) -> Result<CreateGlobalMessageCommand<'a>, CommandValidationError>
Create a new message global command.
Creating a command with the same name as an already-existing global command will overwrite the old command. See Discord Docs/Create Global Application Command.
Errors
Returns an error of type NameLengthInvalid if the command name is
not between 1 and 32 characters.
sourcepub fn user(
self,
name: &'a str
) -> Result<CreateGlobalUserCommand<'a>, CommandValidationError>
pub fn user(
self,
name: &'a str
) -> Result<CreateGlobalUserCommand<'a>, CommandValidationError>
Create a new user global command.
Creating a command with the same name as an already-existing global command will overwrite the old command. See Discord Docs/Create Global Application Command.
Errors
Returns an error of type NameLengthInvalid if the command name is
not between 1 and 32 characters.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for CreateGlobalCommand<'a>
impl<'a> Send for CreateGlobalCommand<'a>
impl<'a> Sync for CreateGlobalCommand<'a>
impl<'a> Unpin for CreateGlobalCommand<'a>
impl<'a> !UnwindSafe for CreateGlobalCommand<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more