Struct lsp_types::ApplyWorkspaceEditResponse
source · [−]pub struct ApplyWorkspaceEditResponse {
pub applied: bool,
pub failure_reason: Option<String>,
pub failed_change: Option<u32>,
}Fields
applied: boolIndicates 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
sourceimpl Clone for ApplyWorkspaceEditResponse
impl Clone for ApplyWorkspaceEditResponse
sourcefn clone(&self) -> ApplyWorkspaceEditResponse
fn clone(&self) -> ApplyWorkspaceEditResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ApplyWorkspaceEditResponse
impl Debug for ApplyWorkspaceEditResponse
sourceimpl<'de> Deserialize<'de> for ApplyWorkspaceEditResponse
impl<'de> Deserialize<'de> for ApplyWorkspaceEditResponse
sourcefn 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
sourceimpl PartialEq<ApplyWorkspaceEditResponse> for ApplyWorkspaceEditResponse
impl PartialEq<ApplyWorkspaceEditResponse> for ApplyWorkspaceEditResponse
sourcefn eq(&self, other: &ApplyWorkspaceEditResponse) -> bool
fn eq(&self, other: &ApplyWorkspaceEditResponse) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Eq for ApplyWorkspaceEditResponse
impl StructuralEq for ApplyWorkspaceEditResponse
impl StructuralPartialEq for ApplyWorkspaceEditResponse
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more