Enum languageserver_types::DocumentHighlightKind[][src]

pub enum DocumentHighlightKind {
    Text,
    Read,
    Write,
}

A document highlight kind.

Variants

A textual occurrance.

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

impl Eq for DocumentHighlightKind
[src]

impl PartialEq for DocumentHighlightKind
[src]

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

This method tests for !=.

impl Copy for DocumentHighlightKind
[src]

impl Clone for DocumentHighlightKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for DocumentHighlightKind
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations