Struct lsp2::CodeActionOptions
pub struct CodeActionOptions {
pub code_action_kinds: Option<Vec<CodeActionKind, Global>>,
pub work_done_progress_options: WorkDoneProgressOptions,
pub resolve_provider: Option<bool>,
}
Fields§
§code_action_kinds: Option<Vec<CodeActionKind, Global>>
CodeActionKinds that this server may return.
The list of kinds may be generic, such as CodeActionKind.Refactor
, or the server
may list out every specific kind they provide.
work_done_progress_options: WorkDoneProgressOptions
§resolve_provider: Option<bool>
The server provides support to resolve additional information for a code action.
@since 3.16.0
Trait Implementations§
§impl Clone for CodeActionOptions
impl Clone for CodeActionOptions
§fn clone(&self) -> CodeActionOptions
fn clone(&self) -> CodeActionOptions
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 CodeActionOptions
impl Debug for CodeActionOptions
§impl Default for CodeActionOptions
impl Default for CodeActionOptions
§fn default() -> CodeActionOptions
fn default() -> CodeActionOptions
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for CodeActionOptions
impl<'de> Deserialize<'de> for CodeActionOptions
§fn deserialize<__D>(
__deserializer: __D
) -> Result<CodeActionOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CodeActionOptions, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<CodeActionOptions> for CodeActionProviderCapability
impl From<CodeActionOptions> for CodeActionProviderCapability
§fn from(from: CodeActionOptions) -> CodeActionProviderCapability
fn from(from: CodeActionOptions) -> CodeActionProviderCapability
Converts to this type from the input type.
§impl PartialEq<CodeActionOptions> for CodeActionOptions
impl PartialEq<CodeActionOptions> for CodeActionOptions
§fn eq(&self, other: &CodeActionOptions) -> bool
fn eq(&self, other: &CodeActionOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for CodeActionOptions
impl Serialize for CodeActionOptions
§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 CodeActionOptions
impl StructuralEq for CodeActionOptions
impl StructuralPartialEq for CodeActionOptions
Auto Trait Implementations§
impl RefUnwindSafe for CodeActionOptions
impl Send for CodeActionOptions
impl Sync for CodeActionOptions
impl Unpin for CodeActionOptions
impl UnwindSafe for CodeActionOptions
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.