#[non_exhaustive]
pub struct CommandArgs { pub args: Option<String>, pub bang: bool, pub count: Option<u32>, pub fargs: Vec<String>, pub line1: usize, pub line2: usize, pub mods: Option<String>, pub range: u8, pub register: Option<String>, pub smods: CommandModifiers, }
Expand description

Arguments passed to functions executed by commands. See Buffer::create_user_command to create a buffer-local command or create_user_command to create a global one.

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.
args: Option<String>

The arguments passed to the command, if any.

bang: bool

Whether the command was executed with a ! modifier.

count: Option<u32>

The count supplied by <count>, if any.

fargs: Vec<String>

The arguments passed to the command split by unescaped whitespace.

line1: usize

The starting line of the command range.

line2: usize

The final line of the command range.

mods: Option<String>

Command modifiers, if any.

range: u8

The number of items in the command range.

register: Option<String>

The optional register, if specified.

smods: CommandModifiers
Available on crate feature nightly only.

Command modifiers in a more structured format.

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

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.