pub struct SetupErrorWrapper {
pub context: String,
pub error: SetupError,
}
Expand description
setup error ({context}): {error}
Fields§
§context: String
Additional information about where the error occurred.
error: SetupError
The underlying error.
Trait Implementations§
Source§impl Debug for SetupErrorWrapper
impl Debug for SetupErrorWrapper
Source§impl Display for SetupErrorWrapper
impl Display for SetupErrorWrapper
Source§impl Error for SetupErrorWrapper
impl Error for SetupErrorWrapper
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<SetupErrorWrapper> for ShellError
impl From<SetupErrorWrapper> for ShellError
Source§fn from(source: SetupErrorWrapper) -> Self
fn from(source: SetupErrorWrapper) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SetupErrorWrapper
impl !RefUnwindSafe for SetupErrorWrapper
impl Send for SetupErrorWrapper
impl Sync for SetupErrorWrapper
impl Unpin for SetupErrorWrapper
impl !UnwindSafe for SetupErrorWrapper
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