Struct lsp_types::WorkspaceEditClientCapabilities [−][src]
Fields
document_changes: Option<bool>The client supports versioned document changes in WorkspaceEdits
resource_operations: Option<Vec<ResourceOperationKind>>The resource operations the client supports. Clients should at least support 'create', 'rename' and 'delete' files and folders.
failure_handling: Option<FailureHandlingKind>The failure handling strategy of a client if applying the workspace edit failes.
normalizes_line_endings: Option<bool>Whether the client normalizes line endings to the client specific
setting.
If set to true the client will normalize line ending characters
in a workspace edit containg to the client specific new line
character.
@since 3.16.0
change_annotation_support: Option<ChangeAnnotationWorkspaceEditClientCapabilities>Whether the client in general supports change annotations on text edits, create file, rename file and delete file changes.
@since 3.16.0
Trait Implementations
impl Clone for WorkspaceEditClientCapabilities[src]
fn clone(&self) -> WorkspaceEditClientCapabilities[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for WorkspaceEditClientCapabilities[src]
impl Default for WorkspaceEditClientCapabilities[src]
impl<'de> Deserialize<'de> for WorkspaceEditClientCapabilities[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for WorkspaceEditClientCapabilities[src]
impl PartialEq<WorkspaceEditClientCapabilities> for WorkspaceEditClientCapabilities[src]
fn eq(&self, other: &WorkspaceEditClientCapabilities) -> bool[src]
fn ne(&self, other: &WorkspaceEditClientCapabilities) -> bool[src]
impl Serialize for WorkspaceEditClientCapabilities[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for WorkspaceEditClientCapabilities[src]
impl StructuralPartialEq for WorkspaceEditClientCapabilities[src]
Auto Trait Implementations
impl RefUnwindSafe for WorkspaceEditClientCapabilities[src]
impl Send for WorkspaceEditClientCapabilities[src]
impl Sync for WorkspaceEditClientCapabilities[src]
impl Unpin for WorkspaceEditClientCapabilities[src]
impl UnwindSafe for WorkspaceEditClientCapabilities[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,