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
name: String
The name of this symbol.
kind: SymbolKind
The kind of this symbol.
location: Location
The location of this symbol.
container_name: Option<String>
The name of the symbol containing this symbol.
Trait Implementations
impl Debug for SymbolInformation[src]
impl PartialEq for SymbolInformation[src]
fn eq(&self, __arg_0: &SymbolInformation) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SymbolInformation) -> bool[src]
This method tests for !=.