Struct languageserver_types::SymbolInformation[][src]

pub struct SymbolInformation {
    pub name: String,
    pub kind: SymbolKind,
    pub location: Location,
    pub container_name: Option<String>,
}

Represents information about programming constructs like variables, classes, interfaces etc.

Fields

The name of this symbol.

The kind of this symbol.

The location of this symbol.

The name of the symbol containing this symbol.

Trait Implementations

impl Debug for SymbolInformation
[src]

Formats the value using the given formatter. Read more

impl Eq for SymbolInformation
[src]

impl PartialEq for SymbolInformation
[src]

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

This method tests for !=.

Auto Trait Implementations