pub enum CompletionItemKind {
Show 25 variants
Text = 1,
Method = 2,
Function = 3,
Constructor = 4,
Field = 5,
Variable = 6,
Class = 7,
Interface = 8,
Module = 9,
Property = 10,
Unit = 11,
Value = 12,
Enum = 13,
Keyword = 14,
Snippet = 15,
Color = 16,
File = 17,
Reference = 18,
Folder = 19,
EnumMember = 20,
Constant = 21,
Struct = 22,
Event = 23,
Operator = 24,
TypeParameter = 25,
}
Expand description
Completion item kinds
Variantsยง
Text = 1
Method = 2
Function = 3
Constructor = 4
Field = 5
Variable = 6
Class = 7
Interface = 8
Module = 9
Property = 10
Unit = 11
Value = 12
Enum = 13
Keyword = 14
Snippet = 15
Color = 16
File = 17
Reference = 18
Folder = 19
EnumMember = 20
Constant = 21
Struct = 22
Event = 23
Operator = 24
TypeParameter = 25
Trait Implementationsยง
Sourceยงimpl Clone for CompletionItemKind
impl Clone for CompletionItemKind
Sourceยงfn clone(&self) -> CompletionItemKind
fn clone(&self) -> CompletionItemKind
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 CompletionItemKind
impl Debug for CompletionItemKind
Sourceยงimpl<'de> Deserialize<'de> for CompletionItemKind
impl<'de> Deserialize<'de> for CompletionItemKind
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
Sourceยงimpl PartialEq for CompletionItemKind
impl PartialEq for CompletionItemKind
Sourceยงimpl Serialize for CompletionItemKind
impl Serialize for CompletionItemKind
impl StructuralPartialEq for CompletionItemKind
Auto Trait Implementationsยง
impl Freeze for CompletionItemKind
impl RefUnwindSafe for CompletionItemKind
impl Send for CompletionItemKind
impl Sync for CompletionItemKind
impl Unpin for CompletionItemKind
impl UnwindSafe for CompletionItemKind
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