Struct languageserver_types::DocumentLink[][src]

pub struct DocumentLink {
    pub range: Range,
    pub target: Url,
}

A document link is a range in a text document that links to an internal or external resource, like another text document or a web site.

Fields

The range this link applies to.

The uri this link points to.

Trait Implementations

impl Debug for DocumentLink
[src]

Formats the value using the given formatter. Read more

impl Eq for DocumentLink
[src]

impl PartialEq for DocumentLink
[src]

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

This method tests for !=.

Auto Trait Implementations