Enum lsp_types::CodeActionOrCommand
source · pub enum CodeActionOrCommand {
Command(Command),
CodeAction(CodeAction),
}
Variants§
Command(Command)
CodeAction(CodeAction)
Trait Implementations§
source§impl Clone for CodeActionOrCommand
impl Clone for CodeActionOrCommand
source§fn clone(&self) -> CodeActionOrCommand
fn clone(&self) -> CodeActionOrCommand
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 moresource§impl Debug for CodeActionOrCommand
impl Debug for CodeActionOrCommand
source§impl<'de> Deserialize<'de> for CodeActionOrCommand
impl<'de> Deserialize<'de> for CodeActionOrCommand
source§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
source§impl From<CodeAction> for CodeActionOrCommand
impl From<CodeAction> for CodeActionOrCommand
source§fn from(action: CodeAction) -> Self
fn from(action: CodeAction) -> Self
Converts to this type from the input type.
source§impl From<Command> for CodeActionOrCommand
impl From<Command> for CodeActionOrCommand
source§impl PartialEq for CodeActionOrCommand
impl PartialEq for CodeActionOrCommand
source§fn eq(&self, other: &CodeActionOrCommand) -> bool
fn eq(&self, other: &CodeActionOrCommand) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CodeActionOrCommand
impl Serialize for CodeActionOrCommand
impl StructuralPartialEq for CodeActionOrCommand
Auto Trait Implementations§
impl RefUnwindSafe for CodeActionOrCommand
impl Send for CodeActionOrCommand
impl Sync for CodeActionOrCommand
impl Unpin for CodeActionOrCommand
impl UnwindSafe for CodeActionOrCommand
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