Struct languageserver_types::WorkspaceEditCapability[][src]

pub struct WorkspaceEditCapability {
    pub document_changes: Option<bool>,
    pub resource_operations: Option<Vec<ResourceOperationKind>>,
    pub failure_handling: Option<FailureHandlingKind>,
}

Fields

The client supports versioned document changes in WorkspaceEdits

The resource operations the client supports. Clients should at least support 'create', 'rename' and 'delete' files and folders.

The failure handling strategy of a client if applying the workspace edit failes.

Trait Implementations

impl Debug for WorkspaceEditCapability
[src]

Formats the value using the given formatter. Read more

impl Eq for WorkspaceEditCapability
[src]

impl PartialEq for WorkspaceEditCapability
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for WorkspaceEditCapability
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations