pub enum LspdRunError {
RuntimeCreate(Error),
LogFileOpen(Error),
Daemon(DaemonError),
}Variants§
Trait Implementations§
Source§impl Debug for LspdRunError
impl Debug for LspdRunError
Source§impl Display for LspdRunError
impl Display for LspdRunError
Source§impl Error for LspdRunError
impl Error for LspdRunError
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()
Source§impl From<DaemonError> for LspdRunError
impl From<DaemonError> for LspdRunError
Source§fn from(source: DaemonError) -> Self
fn from(source: DaemonError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for LspdRunError
impl !UnwindSafe for LspdRunError
impl Freeze for LspdRunError
impl Send for LspdRunError
impl Sync for LspdRunError
impl Unpin for LspdRunError
impl UnsafeUnpin for LspdRunError
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