Struct lsp_types::TextDocumentContentChangeEvent [−][src]
pub struct TextDocumentContentChangeEvent {
pub range: Option<Range>,
pub range_length: Option<u32>,
pub text: String,
}Expand description
An event describing a change to a text document. If range and rangeLength are omitted the new text is considered to be the full content of the document.
Fields
range: Option<Range>The range of the document that changed.
range_length: Option<u32>The length of the range that got replaced.
Deprecated: Use range instead
text: StringThe new text of the document.
Trait Implementations
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for TextDocumentContentChangeEvent
impl Sync for TextDocumentContentChangeEvent
impl Unpin for TextDocumentContentChangeEvent
impl UnwindSafe for TextDocumentContentChangeEvent
Blanket Implementations
Mutably borrows from an owned value. Read more