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