Struct languageserver_types::DidChangeTextDocumentParams
[−]
[src]
pub struct DidChangeTextDocumentParams {
pub text_document: VersionedTextDocumentIdentifier,
pub content_changes: Vec<TextDocumentContentChangeEvent>,
}Fields
text_document: VersionedTextDocumentIdentifier
The document that did change. The version number points to the version after all provided content changes have been applied.
content_changes: Vec<TextDocumentContentChangeEvent>
The actual content changes.
Trait Implementations
impl Debug for DidChangeTextDocumentParams[src]
impl PartialEq for DidChangeTextDocumentParams[src]
fn eq(&self, __arg_0: &DidChangeTextDocumentParams) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DidChangeTextDocumentParams) -> bool[src]
This method tests for !=.