#[non_exhaustive]
pub struct CmdInfos { pub addr: Option<CommandAddr>, pub args: Vec<String>, pub bang: Option<bool>, pub cmd: Option<String>, pub count: Option<u32>, pub magic: Option<CmdMagic>, pub mods: Option<CommandModifiers>, pub nargs: Option<CommandNArgs>, pub nextcmd: Option<String>, pub range: Option<CmdRange>, pub reg: Option<char>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
addr: Option<CommandAddr>

Value of :command-addr. Uses short name.

args: Vec<String>

Command arguments.

bang: Option<bool>

Whether the command contains a <bang> (!) modifier.

cmd: Option<String>

Command name.

count: Option<u32>

Any count that was supplied to the command. None if command cannot take a count.

magic: Option<CmdMagic>mods: Option<CommandModifiers>nargs: Option<CommandNArgs>

Value of :command-nargs

nextcmd: Option<String>

Next command if there are multiple commands separated by a :bar. None if there isn’t a next command.

range: Option<CmdRange>

Command range.

reg: Option<char>

The optional command <register>. None if not specified or if command cannot take a register.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.