[][src]Struct tamasfe_lsp_types::CompletionList

pub struct CompletionList {
    pub is_incomplete: bool,
    pub items: Vec<CompletionItem>,
}

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

impl Clone for CompletionList[src]

impl Debug for CompletionList[src]

impl Default for CompletionList[src]

impl<'de> Deserialize<'de> for CompletionList[src]

impl From<CompletionList> for CompletionResponse[src]

impl PartialEq<CompletionList> for CompletionList[src]

impl Serialize for CompletionList[src]

impl StructuralPartialEq for CompletionList[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.