pub enum CodeActionData {
FixAll(FixAllData),
OrganizeImports(OrganizeImportsData),
}Variants§
FixAll(FixAllData)
OrganizeImports(OrganizeImportsData)
Trait Implementations§
Source§impl Clone for CodeActionData
impl Clone for CodeActionData
Source§fn clone(&self) -> CodeActionData
fn clone(&self) -> CodeActionData
Returns a duplicate 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 CodeActionData
impl Debug for CodeActionData
Source§impl<'de> Deserialize<'de> for CodeActionData
impl<'de> Deserialize<'de> for CodeActionData
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
Auto Trait Implementations§
impl Freeze for CodeActionData
impl RefUnwindSafe for CodeActionData
impl Send for CodeActionData
impl Sync for CodeActionData
impl Unpin for CodeActionData
impl UnwindSafe for CodeActionData
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