pub struct CompletionItemKind(/* private fields */);
Expand description
The kind of a completion entry.
Implementations§
Source§impl CompletionItemKind
impl CompletionItemKind
pub const TEXT: CompletionItemKind
pub const METHOD: CompletionItemKind
pub const FUNCTION: CompletionItemKind
pub const CONSTRUCTOR: CompletionItemKind
pub const FIELD: CompletionItemKind
pub const VARIABLE: CompletionItemKind
pub const CLASS: CompletionItemKind
pub const INTERFACE: CompletionItemKind
pub const MODULE: CompletionItemKind
pub const PROPERTY: CompletionItemKind
pub const UNIT: CompletionItemKind
pub const VALUE: CompletionItemKind
pub const ENUM: CompletionItemKind
pub const KEYWORD: CompletionItemKind
pub const SNIPPET: CompletionItemKind
pub const COLOR: CompletionItemKind
pub const FILE: CompletionItemKind
pub const REFERENCE: CompletionItemKind
pub const FOLDER: CompletionItemKind
pub const ENUM_MEMBER: CompletionItemKind
pub const CONSTANT: CompletionItemKind
pub const STRUCT: CompletionItemKind
pub const EVENT: CompletionItemKind
pub const OPERATOR: CompletionItemKind
pub const TYPE_PARAMETER: CompletionItemKind
Trait Implementations§
Source§impl Clone for CompletionItemKind
impl Clone for CompletionItemKind
Source§fn clone(&self) -> CompletionItemKind
fn clone(&self) -> CompletionItemKind
Returns a copy 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
Source§impl TryFrom<&str> for CompletionItemKind
impl TryFrom<&str> for CompletionItemKind
impl Copy for CompletionItemKind
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.