pub struct CompletionList<T: TypeProvider> {
pub is_incomplete: bool,
pub items: Vec<CompletionItem<T>>,
}Expand description
A list of completion items.
Fields§
§is_incomplete: boolThis may cause recomputations if set to true.
items: Vec<CompletionItem<T>>The completion items.
Trait Implementations§
Source§impl<T: TypeProvider> Default for CompletionList<T>
impl<T: TypeProvider> Default for CompletionList<T>
Source§impl<T: TypeProvider> Serialize for CompletionList<T>
impl<T: TypeProvider> Serialize for CompletionList<T>
Auto Trait Implementations§
impl<T> Freeze for CompletionList<T>
impl<T> RefUnwindSafe for CompletionList<T>where
<T as TypeProvider>::CompletionData: RefUnwindSafe,
<T as TypeProvider>::Command: RefUnwindSafe,
impl<T> Send for CompletionList<T>
impl<T> Sync for CompletionList<T>
impl<T> Unpin for CompletionList<T>
impl<T> UnwindSafe for CompletionList<T>
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