Struct languageserver_types::TextDocumentIdentifier [] [src]

pub struct TextDocumentIdentifier {
    pub uri: String,
}

Text documents are identified using a URI. On the protocol level, URIs are passed as strings. The corresponding JSON structure looks like this:

Fields

The text document's URI.

Trait Implementations

impl Debug for TextDocumentIdentifier
[src]

Formats the value using the given formatter.

impl PartialEq for TextDocumentIdentifier
[src]

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

This method tests for !=.