Struct tower_lsp::ExitedError
source · [−]pub struct ExitedError(_);
Expand description
Error that occurs when attempting to call the language server after it has already exited.
Trait Implementations
sourceimpl Clone for ExitedError
impl Clone for ExitedError
sourcefn clone(&self) -> ExitedError
fn clone(&self) -> ExitedError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExitedError
impl Debug for ExitedError
sourceimpl Display for ExitedError
impl Display for ExitedError
sourceimpl Error for ExitedError
impl Error for ExitedError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl PartialEq<ExitedError> for ExitedError
impl PartialEq<ExitedError> for ExitedError
sourcefn eq(&self, other: &ExitedError) -> bool
fn eq(&self, other: &ExitedError) -> bool
impl StructuralPartialEq for ExitedError
Auto Trait Implementations
impl RefUnwindSafe for ExitedError
impl Send for ExitedError
impl Sync for ExitedError
impl Unpin for ExitedError
impl UnwindSafe for ExitedError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more