Struct lsp_types::CodeActionClientCapabilities [−][src]
Fields
dynamic_registration: Option<bool>This capability supports dynamic registration.
code_action_literal_support: Option<CodeActionLiteralSupport>The client support code action literals as a valid
response of the textDocument/codeAction request.
is_preferred_support: Option<bool>Whether code action supports the isPreferred property.
since 3.15.0
disabled_support: Option<bool>Whether code action supports the disabled property.
since 3.16.0
data_support: Option<bool>Whether code action supports the data property which is
preserved between a textDocument/codeAction and a
codeAction/resolve request.
since 3.16.0
resolve_support: Option<CodeActionCapabilityResolveSupport>Whether the client supports resolving additional code action
properties via a separate codeAction/resolve request.
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
CodeAction#edit property by for example presenting
the workspace edit in the user interface and asking
for confirmation.
@since 3.16.0
Trait Implementations
impl Clone for CodeActionClientCapabilities[src]
fn clone(&self) -> CodeActionClientCapabilities[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CodeActionClientCapabilities[src]
impl Default for CodeActionClientCapabilities[src]
impl<'de> Deserialize<'de> for CodeActionClientCapabilities[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for CodeActionClientCapabilities[src]
impl PartialEq<CodeActionClientCapabilities> for CodeActionClientCapabilities[src]
fn eq(&self, other: &CodeActionClientCapabilities) -> bool[src]
fn ne(&self, other: &CodeActionClientCapabilities) -> bool[src]
impl Serialize for CodeActionClientCapabilities[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for CodeActionClientCapabilities[src]
impl StructuralPartialEq for CodeActionClientCapabilities[src]
Auto Trait Implementations
impl RefUnwindSafe for CodeActionClientCapabilities[src]
impl Send for CodeActionClientCapabilities[src]
impl Sync for CodeActionClientCapabilities[src]
impl Unpin for CodeActionClientCapabilities[src]
impl UnwindSafe for CodeActionClientCapabilities[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>,