pub enum AutocompleteEntryKind {
Property,
Binding,
Keyword,
String,
Type,
Module,
GeneratedFunction,
RequirePath,
HotComment,
}Variants§
Implementations§
Source§impl AutocompleteEntryKind
impl AutocompleteEntryKind
pub const Property: Self = Self::Property
pub const Binding: Self = Self::Binding
pub const Keyword: Self = Self::Keyword
pub const String: Self = Self::String
pub const Type: Self = Self::Type
pub const Module: Self = Self::Module
pub const GeneratedFunction: Self = Self::GeneratedFunction
pub const RequirePath: Self = Self::RequirePath
pub const HotComment: Self = Self::HotComment
Trait Implementations§
Source§impl Clone for AutocompleteEntryKind
impl Clone for AutocompleteEntryKind
Source§fn clone(&self) -> AutocompleteEntryKind
fn clone(&self) -> AutocompleteEntryKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AutocompleteEntryKind
Source§impl Debug for AutocompleteEntryKind
impl Debug for AutocompleteEntryKind
impl Eq for AutocompleteEntryKind
Source§impl Hash for AutocompleteEntryKind
impl Hash for AutocompleteEntryKind
Source§impl PartialEq for AutocompleteEntryKind
impl PartialEq for AutocompleteEntryKind
Source§fn eq(&self, other: &AutocompleteEntryKind) -> bool
fn eq(&self, other: &AutocompleteEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutocompleteEntryKind
Auto Trait Implementations§
impl Freeze for AutocompleteEntryKind
impl RefUnwindSafe for AutocompleteEntryKind
impl Send for AutocompleteEntryKind
impl Sync for AutocompleteEntryKind
impl Unpin for AutocompleteEntryKind
impl UnsafeUnpin for AutocompleteEntryKind
impl UnwindSafe for AutocompleteEntryKind
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