A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/lsp/rq.rs')
| -rw-r--r-- | src/lsp/rq.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lsp/rq.rs b/src/lsp/rq.rs index 18c6616..97ed4c5 100644 --- a/src/lsp/rq.rs +++ b/src/lsp/rq.rs @@ -48,7 +48,7 @@ impl<X> From<oneshot::error::RecvError> for RequestError<X> { Self::Rx(PhantomData) } } -impl<X: Request + Debug> std::error::Error for RequestError<X> { +impl<X: Request> std::error::Error for RequestError<X> { fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { None } |