Enum lsp_types::request::CodeLensRefresh
source · pub enum CodeLensRefresh {}
Expand description
The workspace/codeLens/refresh request is sent from the server to the client. Servers can use it to ask clients to refresh the code lenses currently shown in editors. As a result the client should ask the server to recompute the code lenses for these editors. This is useful if a server detects a configuration change which requires a re-calculation of all code lenses. Note that the client still has the freedom to delay the re-calculation of the code lenses if for example an editor is currently not visible.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeLensRefresh
impl RefUnwindSafe for CodeLensRefresh
impl Send for CodeLensRefresh
impl Sync for CodeLensRefresh
impl Unpin for CodeLensRefresh
impl UnwindSafe for CodeLensRefresh
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