pub struct NvimInitError {
source: Box<dyn Error>,
cmd: Option<String>,
}
Fields§
§source: Box<dyn Error>
§cmd: Option<String>
Implementations§
Trait Implementations§
Source§impl Debug for NvimInitError
impl Debug for NvimInitError
Source§impl Display for NvimInitError
impl Display for NvimInitError
Source§impl Error for NvimInitError
impl Error for NvimInitError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Auto Trait Implementations§
impl Freeze for NvimInitError
impl !RefUnwindSafe for NvimInitError
impl !Send for NvimInitError
impl !Sync for NvimInitError
impl Unpin for NvimInitError
impl !UnwindSafe for NvimInitError
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