pub enum LspOutput {
Response {
id: CoreRequestId,
result: Result<Value, LspError>,
},
Notification {
method: String,
params: Value,
},
}Expand description
Output messages from the core.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LspOutput
impl RefUnwindSafe for LspOutput
impl Send for LspOutput
impl Sync for LspOutput
impl Unpin for LspOutput
impl UnwindSafe for LspOutput
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