pub struct DidChangeTextDocumentParams {
pub text_document: VersionedTextDocumentIdentifier,
pub content_changes: Vec<TextDocumentContentChangeEvent>,
}
Expand description
The change text document notification’s parameters.
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. The content changes describe single state changes to the document. So if there are two content changes c1 (at array index 0) and c2 (at array index 1) for a document in state S then c1 moves the document from S to S’ and c2 from S’ to S’‘. So c1 is computed on the state S and c2 is computed on the state S’.
To mirror the content of a document using change events use the following approach:
- start with the same initial content
- apply the ‘textDocument/didChange’ notifications in the order you receive them.
- apply the
TextDocumentContentChangeEvent
s in a single notification in the order you receive them.
Trait Implementations§
Source§impl Clone for DidChangeTextDocumentParams
impl Clone for DidChangeTextDocumentParams
Source§fn clone(&self) -> DidChangeTextDocumentParams
fn clone(&self) -> DidChangeTextDocumentParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DidChangeTextDocumentParams
impl Debug for DidChangeTextDocumentParams
Source§impl<'de> Deserialize<'de> for DidChangeTextDocumentParams
impl<'de> Deserialize<'de> for DidChangeTextDocumentParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DidChangeTextDocumentParams
impl StructuralPartialEq for DidChangeTextDocumentParams
Auto Trait Implementations§
impl Freeze for DidChangeTextDocumentParams
impl RefUnwindSafe for DidChangeTextDocumentParams
impl Send for DidChangeTextDocumentParams
impl Sync for DidChangeTextDocumentParams
impl Unpin for DidChangeTextDocumentParams
impl UnwindSafe for DidChangeTextDocumentParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more