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.

Fields

The text document's URI.

Methods

impl TextDocumentIdentifier
[src]

Trait Implementations

impl Debug for TextDocumentIdentifier
[src]

Formats the value using the given formatter. Read more

impl Eq for TextDocumentIdentifier
[src]

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 !=.

impl Clone for TextDocumentIdentifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations