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

Variants

MetaData(MetaData)

Project(Project)

Document(Document)

Range

Fields

range: Range

ResultSet(ResultSet)

Moniker(Moniker)

PackageInformation(PackageInformation)

Event(Event)

DefinitionResult

DeclarationResult

TypeDefinitionResult

ReferenceResult

ImplementationResult

FoldingRangeResult

Fields

result: Vec<FoldingRange>

HoverResult

Fields

result: Hover

DocumentSymbolResult

DocumentLinkResult

Fields

result: Vec<DocumentLink>

DiagnosticResult

Fields

result: Vec<Diagnostic>

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.