Struct lsp2::RenameClientCapabilities
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§
§impl Clone for RenameClientCapabilities
impl Clone for RenameClientCapabilities
§fn clone(&self) -> RenameClientCapabilities
fn clone(&self) -> RenameClientCapabilities
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for RenameClientCapabilities
impl Debug for RenameClientCapabilities
§impl Default for RenameClientCapabilities
impl Default for RenameClientCapabilities
§fn default() -> RenameClientCapabilities
fn default() -> RenameClientCapabilities
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for RenameClientCapabilities
impl<'de> Deserialize<'de> for RenameClientCapabilities
§fn deserialize<__D>(
__deserializer: __D
) -> Result<RenameClientCapabilities, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<RenameClientCapabilities, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq<RenameClientCapabilities> for RenameClientCapabilities
impl PartialEq<RenameClientCapabilities> for RenameClientCapabilities
§fn eq(&self, other: &RenameClientCapabilities) -> bool
fn eq(&self, other: &RenameClientCapabilities) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for RenameClientCapabilities
impl Serialize for RenameClientCapabilities
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for RenameClientCapabilities
impl StructuralEq for RenameClientCapabilities
impl StructuralPartialEq for RenameClientCapabilities
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.