Struct languageserver_types::CompletionContext [−][src]
pub struct CompletionContext {
pub trigger_kind: CompletionTriggerKind,
pub trigger_character: Option<String>,
}Fields
trigger_kind: CompletionTriggerKind
How the completion was triggered.
trigger_character: Option<String>
The trigger character (a single character) that has trigger code complete.
Is undefined if triggerKind !== CompletionTriggerKind.TriggerCharacter
Trait Implementations
impl Debug for CompletionContext[src]
impl Debug for CompletionContextfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CompletionContext[src]
impl PartialEq for CompletionContextfn eq(&self, other: &CompletionContext) -> bool[src]
fn eq(&self, other: &CompletionContext) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CompletionContext) -> bool[src]
fn ne(&self, other: &CompletionContext) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for CompletionContext
impl Send for CompletionContextimpl Sync for CompletionContext
impl Sync for CompletionContext