pub enum DaemonError {
Io(Error),
BindFailed(Error),
LspSpawnFailed(String),
LockfileError(String),
}Expand description
Errors from the daemon (server) side of aether-lspd.
§Variants
Io– A general IO error.BindFailed– Failed to bind the Unix domain socket (e.g. address already in use, permission denied).LspSpawnFailed– Failed to spawn a language server subprocess.LockfileError– Failed to acquire the lockfile for the socket path, typically because another daemon instance is already running.
Variants§
Io(Error)
IO error
BindFailed(Error)
Failed to bind to socket
LspSpawnFailed(String)
Failed to spawn LSP process
LockfileError(String)
Lockfile error
Trait Implementations§
Source§impl Debug for DaemonError
impl Debug for DaemonError
Source§impl Display for DaemonError
impl Display for DaemonError
Source§impl Error for DaemonError
impl Error for DaemonError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for DaemonError
impl !RefUnwindSafe for DaemonError
impl Send for DaemonError
impl Sync for DaemonError
impl Unpin for DaemonError
impl UnsafeUnpin for DaemonError
impl !UnwindSafe for DaemonError
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