pub struct AutocompleteEntry {
pub kind: AutocompleteEntryKind,
pub type: Option<TypeId>,
pub deprecated: bool,
pub wrong_index_type: bool,
pub type_correct: TypeCorrectKind,
pub containing_extern_type: Option<*const ExternType>,
pub prop: Option<*const Property>,
pub documentation_symbol: Option<String>,
pub tags: Tags,
pub parens: ParenthesesRecommendation,
pub insert_text: Option<String>,
pub indexed_with_self: bool,
}Fields§
§kind: AutocompleteEntryKind§type: Option<TypeId>§deprecated: bool§wrong_index_type: bool§type_correct: TypeCorrectKind§containing_extern_type: Option<*const ExternType>§prop: Option<*const Property>§documentation_symbol: Option<String>§parens: ParenthesesRecommendation§insert_text: Option<String>§indexed_with_self: boolTrait Implementations§
Source§impl Clone for AutocompleteEntry
impl Clone for AutocompleteEntry
Source§fn clone(&self) -> AutocompleteEntry
fn clone(&self) -> AutocompleteEntry
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 moreSource§impl Debug for AutocompleteEntry
impl Debug for AutocompleteEntry
Auto Trait Implementations§
impl !Send for AutocompleteEntry
impl !Sync for AutocompleteEntry
impl Freeze for AutocompleteEntry
impl RefUnwindSafe for AutocompleteEntry
impl Unpin for AutocompleteEntry
impl UnsafeUnpin for AutocompleteEntry
impl UnwindSafe for AutocompleteEntry
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