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§
Source§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