Struct languageserver_types::DidChangeTextDocumentParams[][src]

pub struct DidChangeTextDocumentParams {
    pub text_document: VersionedTextDocumentIdentifier,
    pub content_changes: Vec<TextDocumentContentChangeEvent>,
}

Fields

The document that did change. The version number points to the version after all provided content changes have been applied.

The actual content changes.

Trait Implementations

impl Debug for DidChangeTextDocumentParams
[src]

Formats the value using the given formatter. Read more

impl Eq for DidChangeTextDocumentParams
[src]

impl PartialEq for DidChangeTextDocumentParams
[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