Enum lsif_types::Vertex[][src]

pub enum Vertex {
    Project(Project),
    Document(Document),
    Range(Range),
    ResultSet,
    Event(Event),
    Moniker(Moniker),
    PackageInformation(PackageInformation),
    MetaData(MetaData),
    DefinitionResult,
    DeclarationResult,
    HoverResult {
        result: Hover,
    },
    ReferenceResult,
    ImplementationResult,
    TypeDefinitionResult,
    FoldingRangeResult {
        result: Vec<FoldingRange>,
    },
    DocumentLinkResult {
        result: Vec<DocumentLink>,
    },
    DocumentSymbolResult {
        result: DocumentSymbolResult,
    },
    DiagnosticResult {
        result: Vec<Diagnostic>,
    },
}

All available vertex types.

Variants

Project(Project)
Document(Document)
Range(Range)
ResultSet
Event(Event)
Moniker(Moniker)
PackageInformation(PackageInformation)
MetaData(MetaData)
DefinitionResult
DeclarationResult
HoverResult

Fields of HoverResult

result: Hover
ReferenceResult
ImplementationResult
TypeDefinitionResult
FoldingRangeResult

Fields of FoldingRangeResult

result: Vec<FoldingRange>
DocumentLinkResult

Fields of DocumentLinkResult

result: Vec<DocumentLink>
DocumentSymbolResult

Fields of DocumentSymbolResult

result: DocumentSymbolResult
DiagnosticResult

Fields of DiagnosticResult

result: Vec<Diagnostic>

Trait Implementations

impl Clone for Vertex[src]

impl Debug for Vertex[src]

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

impl Eq for Vertex[src]

impl From<Vertex> for Element[src]

impl PartialEq<Vertex> for Vertex[src]

impl Serialize for Vertex[src]

impl StructuralEq for Vertex[src]

impl StructuralPartialEq for Vertex[src]

Auto Trait Implementations

impl RefUnwindSafe for Vertex

impl Send for Vertex

impl Sync for Vertex

impl Unpin for Vertex

impl UnwindSafe for Vertex

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.