pub struct CompletionList {
pub is_incomplete: bool,
pub items: Vec<CompletionItem>,
}
Expand description
Represents a collection of completion items to be presented in the editor.
Fields§
§is_incomplete: bool
This list it not complete. Further typing should result in recomputing this list.
items: Vec<CompletionItem>
The completion items.
Trait Implementations§
Source§impl Debug for CompletionList
impl Debug for CompletionList
Source§impl Default for CompletionList
impl Default for CompletionList
Source§fn default() -> CompletionList
fn default() -> CompletionList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompletionList
impl<'de> Deserialize<'de> for CompletionList
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 CompletionList
impl PartialEq for CompletionList
Source§impl Serialize for CompletionList
impl Serialize for CompletionList
impl StructuralPartialEq for CompletionList
Auto Trait Implementations§
impl Freeze for CompletionList
impl RefUnwindSafe for CompletionList
impl Send for CompletionList
impl Sync for CompletionList
impl Unpin for CompletionList
impl UnwindSafe for CompletionList
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