#[non_exhaustive]pub enum CommandComplete {
Show 36 variants
Arglist,
Augroup,
Buffer,
Behave,
Color,
Command,
Compiler,
Cscope,
Dir,
Environment,
Event,
Expression,
File,
FileInPath,
Filetype,
Function,
Help,
Highlight,
History,
Locale,
Lua,
Mapclear,
Mapping,
Menu,
Messages,
Option,
Packadd,
Shellcmd,
Sign,
Syntax,
Syntime,
Tag,
TagListfiles,
User,
Var,
CustomList(Function<(String, String, usize), Vec<String>>),
}
Expand description
See :h command-complete
for details.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Arglist
Augroup
Buffer
Behave
Color
Command
Compiler
Cscope
Dir
Environment
Event
Expression
File
FileInPath
Filetype
Function
Help
Highlight
History
Locale
Lua
Mapclear
Mapping
Menu
Messages
Option
Packadd
Shellcmd
Sign
Syntax
Syntime
Tag
TagListfiles
User
Var
CustomList(Function<(String, String, usize), Vec<String>>)
See :h command-completion-customlist
for details.
Trait Implementations§
Source§impl Clone for CommandComplete
impl Clone for CommandComplete
Source§fn clone(&self) -> CommandComplete
fn clone(&self) -> CommandComplete
Returns a duplicate of the value. Read more
1.0.0 · 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 CommandComplete
impl Debug for CommandComplete
Source§impl Hash for CommandComplete
impl Hash for CommandComplete
Source§impl PartialEq for CommandComplete
impl PartialEq for CommandComplete
Source§impl Serialize for CommandComplete
impl Serialize for CommandComplete
impl Eq for CommandComplete
impl StructuralPartialEq for CommandComplete
Auto Trait Implementations§
impl Freeze for CommandComplete
impl RefUnwindSafe for CommandComplete
impl Send for CommandComplete
impl Sync for CommandComplete
impl Unpin for CommandComplete
impl UnwindSafe for CommandComplete
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