Struct languageserver_types::TextDocumentIdentifier [] [src]

pub struct TextDocumentIdentifier {
    pub uri: Url,
}

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.

Methods

impl TextDocumentIdentifier
[src]

Trait Implementations

impl Debug for TextDocumentIdentifier
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for TextDocumentIdentifier
[src]

impl PartialEq for TextDocumentIdentifier
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for TextDocumentIdentifier
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations