Struct lsp_types::RenameClientCapabilities [−][src]
pub struct RenameClientCapabilities {
pub dynamic_registration: Option<bool>,
pub prepare_support: Option<bool>,
pub prepare_support_default_behavior: Option<PrepareSupportDefaultBehavior>,
pub honors_change_annotations: Option<bool>,
}
Fields
dynamic_registration: Option<bool>
Whether rename supports dynamic registration.
prepare_support: Option<bool>
Client supports testing for validity of rename operations before execution.
since 3.12.0
prepare_support_default_behavior: Option<PrepareSupportDefaultBehavior>
Client supports the default behavior result.
The value indicates the default behavior used by the client.
since 3.16.0
honors_change_annotations: Option<bool>
Whether the client honors the change annotations in text edits and resource operations returned via the rename request’s workspace edit by for example presenting the workspace edit in the user interface and asking for confirmation.
@since 3.16.0
Trait Implementations
Returns the “default value” for a type. Read more
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>,
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 !=
.
Auto Trait Implementations
impl RefUnwindSafe for RenameClientCapabilities
impl Send for RenameClientCapabilities
impl Sync for RenameClientCapabilities
impl Unpin for RenameClientCapabilities
impl UnwindSafe for RenameClientCapabilities
Blanket Implementations
Mutably borrows from an owned value. Read more