Struct lsp_types::DidSaveTextDocumentParams [−][src]
pub struct DidSaveTextDocumentParams {
pub text_document: TextDocumentIdentifier,
pub text: Option<String>,
}
Fields
text_document: TextDocumentIdentifier
The document that was saved.
text: Option<String>
Optional the content when saved. Depends on the includeText value when the save notification was requested.
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 RefUnwindSafe for DidSaveTextDocumentParams
impl Send for DidSaveTextDocumentParams
impl Sync for DidSaveTextDocumentParams
impl Unpin for DidSaveTextDocumentParams
impl UnwindSafe for DidSaveTextDocumentParams
Blanket Implementations
Mutably borrows from an owned value. Read more