[][src]Struct tamasfe_lsp_types::SymbolInformation

pub struct SymbolInformation {
    pub name: String,
    pub kind: SymbolKind,
    pub deprecated: Option<bool>,
    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.

deprecated: Option<bool>
👎 Deprecated:

Use tags instead

Indicates if this symbol is deprecated.

location: Location

The location of this symbol.

container_name: Option<String>

The name of the symbol containing this symbol.

Trait Implementations

impl Clone for SymbolInformation[src]

impl Debug for SymbolInformation[src]

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

impl Eq for SymbolInformation[src]

impl PartialEq<SymbolInformation> for SymbolInformation[src]

impl Serialize for SymbolInformation[src]

impl StructuralEq for SymbolInformation[src]

impl StructuralPartialEq for SymbolInformation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.