Struct lsp_types::WorkspaceFileOperationsClientCapabilities[][src]

pub struct WorkspaceFileOperationsClientCapabilities {
    pub dynamic_registration: Option<bool>,
    pub did_create: Option<bool>,
    pub will_create: Option<bool>,
    pub did_rename: Option<bool>,
    pub will_rename: Option<bool>,
    pub did_delete: Option<bool>,
    pub will_delete: Option<bool>,
}

Fields

dynamic_registration: Option<bool>

Whether the client supports dynamic registration for file requests/notifications.

did_create: Option<bool>

The client has support for sending didCreateFiles notifications.

will_create: Option<bool>

The server is interested in receiving willCreateFiles requests.

did_rename: Option<bool>

The server is interested in receiving didRenameFiles requests.

will_rename: Option<bool>

The server is interested in receiving willRenameFiles requests.

did_delete: Option<bool>

The server is interested in receiving didDeleteFiles requests.

will_delete: Option<bool>

The server is interested in receiving willDeleteFiles requests.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.