Struct lsp::types::TextDocumentEdit[][src]

pub struct TextDocumentEdit {
    pub text_document: VersionedTextDocumentIdentifier,
    pub edits: Vec<TextEdit>,
}

Describes textual changes on a text document.

Fields

The text document to change.

The edits to be applied.

Methods

impl TextDocumentEdit
[src]

The TextDocumentEdit namespace provides helper function to create an edit that manipulates a text document.

Creates a new TextDocumentEdit

Trait Implementations

impl Debug for TextDocumentEdit
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations