pub struct WorkspaceEdit {
pub changes: Option<HashMap<Uri, Vec<TextEdit>>>,
pub document_changes: Option<Vec<DocumentChange>>,
pub change_annotations: Option<HashMap<ChangeAnnotationIdentifier, ChangeAnnotation>>,
}Expand description
A workspace edit represents changes to many resources managed in the workspace. The edit
should either provide changes or documentChanges. If documentChanges are present
they are preferred over changes if the client can handle versioned document edits.
Since version 3.13.0 a workspace edit can contain resource operations as well. If resource operations are present clients need to execute the operations in the order in which they are provided. So a workspace edit for example can consist of the following two changes: (1) a create file a.txt and (2) a text document edit which insert text into file a.txt.
An invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will
cause failure of the operation. How the client recovers from the failure is described by
the client capability: workspace.workspaceEdit.failureHandling
Fields§
§changes: Option<HashMap<Uri, Vec<TextEdit>>>Holds changes to existing resources.
document_changes: Option<Vec<DocumentChange>>Depending on the client capability workspace.workspaceEdit.resourceOperations document changes
are either an array of TextDocumentEdits to express changes to n different text documents
where each text document edit addresses a specific version of a text document. Or it can contain
above TextDocumentEdits mixed with create, rename and delete file / folder operations.
Whether a client supports versioned document edits is expressed via
workspace.workspaceEdit.documentChanges client capability.
If a client neither supports documentChanges nor workspace.workspaceEdit.resourceOperations then
only plain TextEdits using the changes property are supported.
change_annotations: Option<HashMap<ChangeAnnotationIdentifier, ChangeAnnotation>>A map of change annotations that can be referenced in AnnotatedTextEdits or create, rename and
delete file / folder operations.
Whether clients honor this property depends on the client capability workspace.changeAnnotationSupport.
@since 3.16.0
Implementations§
Source§impl WorkspaceEdit
impl WorkspaceEdit
pub const fn new( changes: Option<HashMap<Uri, Vec<TextEdit>>>, document_changes: Option<Vec<DocumentChange>>, change_annotations: Option<HashMap<ChangeAnnotationIdentifier, ChangeAnnotation>>, ) -> Self
Trait Implementations§
Source§impl Clone for WorkspaceEdit
impl Clone for WorkspaceEdit
Source§fn clone(&self) -> WorkspaceEdit
fn clone(&self) -> WorkspaceEdit
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for WorkspaceEdit
impl Debug for WorkspaceEdit
Source§impl Default for WorkspaceEdit
impl Default for WorkspaceEdit
Source§fn default() -> WorkspaceEdit
fn default() -> WorkspaceEdit
Source§impl<'de> Deserialize<'de> for WorkspaceEdit
impl<'de> Deserialize<'de> for WorkspaceEdit
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>,
Source§impl PartialEq for WorkspaceEdit
impl PartialEq for WorkspaceEdit
Source§fn eq(&self, other: &WorkspaceEdit) -> bool
fn eq(&self, other: &WorkspaceEdit) -> bool
self and other values to be equal, and is used by ==.