Struct lsp_types::WorkspaceServerCapabilities[][src]

pub struct WorkspaceServerCapabilities {
    pub workspace_folders: Option<WorkspaceFoldersServerCapabilities>,
    pub file_operations: Option<WorkspaceFileOperationsServerCapabilities>,
}

Fields

workspace_folders: Option<WorkspaceFoldersServerCapabilities>

The server supports workspace folder.

file_operations: Option<WorkspaceFileOperationsServerCapabilities>

Trait Implementations

impl Clone for WorkspaceServerCapabilities[src]

impl Debug for WorkspaceServerCapabilities[src]

impl Default for WorkspaceServerCapabilities[src]

impl<'de> Deserialize<'de> for WorkspaceServerCapabilities[src]

impl Eq for WorkspaceServerCapabilities[src]

impl PartialEq<WorkspaceServerCapabilities> for WorkspaceServerCapabilities[src]

impl Serialize for WorkspaceServerCapabilities[src]

impl StructuralEq for WorkspaceServerCapabilities[src]

impl StructuralPartialEq for WorkspaceServerCapabilities[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.