Struct lsp_types::ApplyWorkspaceEditResponse [−][src]
pub struct ApplyWorkspaceEditResponse {
pub applied: bool,
pub failure_reason: Option<String>,
pub failed_change: Option<u32>,
}
Fields
applied: bool
Indicates whether the edit was applied or not.
failure_reason: Option<String>
An optional textual description for why the edit was not applied. This may be used may be used by the server for diagnostic logging or to provide a suitable error for a request that triggered the edit
failed_change: Option<u32>
Depending on the client’s failure handling strategy failedChange
might
contain the index of the change that failed. This property is only available
if the client signals a failureHandlingStrategy
in its client capabilities.
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 ApplyWorkspaceEditResponse
impl Send for ApplyWorkspaceEditResponse
impl Sync for ApplyWorkspaceEditResponse
impl Unpin for ApplyWorkspaceEditResponse
impl UnwindSafe for ApplyWorkspaceEditResponse
Blanket Implementations
Mutably borrows from an owned value. Read more