Enum lsp::types::DocumentHighlightKind[][src]

pub enum DocumentHighlightKind {
    Text,
    Read,
    Write,
}

A document highlight kind.

Variants

A textual occurrence.

Read-access of a symbol, like reading a variable.

Write-access of a symbol, like writing to a variable.

Trait Implementations

impl Debug for DocumentHighlightKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations