Enum languageserver_types::CompletionTriggerKind[][src]

pub enum CompletionTriggerKind {
    Invoked,
    TriggerCharacter,
}

How a completion was triggered.

Variants

Trait Implementations

impl Debug for CompletionTriggerKind
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CompletionTriggerKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for CompletionTriggerKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CompletionTriggerKind
[src]

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for CompletionTriggerKind
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations