pub enum CodeActionResolveRequest {}
Expand description
The request is sent from the client to the server to resolve additional information for a given code action.
This is usually used to compute the edit
property of a code action to avoid its unnecessary computation
during the textDocument/codeAction
request.
@since 3.16.0
Trait Implementations§
Source§impl Debug for CodeActionResolveRequest
impl Debug for CodeActionResolveRequest
Auto Trait Implementations§
impl Freeze for CodeActionResolveRequest
impl RefUnwindSafe for CodeActionResolveRequest
impl Send for CodeActionResolveRequest
impl Sync for CodeActionResolveRequest
impl Unpin for CodeActionResolveRequest
impl UnwindSafe for CodeActionResolveRequest
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