pub enum InvocationSummoningError {
Validation(SetupErrorWrapper),
Command(CommandErrorWrapper),
Summon(SummoningError),
CompilerFind(CompilerFindError),
Bootstrap(InstallError),
Python(PythonError),
Io(Error),
}Variants§
Validation(SetupErrorWrapper)
error validating arguments: {0}
Command(CommandErrorWrapper)
error executing command: {0}
Summon(SummoningError)
error summoning: {0}
CompilerFind(CompilerFindError)
error finding compilers: {0}
Bootstrap(InstallError)
error bootstrapping: {0}
Python(PythonError)
error location python: {0}
Io(Error)
io error: {0}
Trait Implementations§
Source§impl Debug for InvocationSummoningError
impl Debug for InvocationSummoningError
Source§impl Display for InvocationSummoningError
impl Display for InvocationSummoningError
Source§impl Error for InvocationSummoningError
impl Error for InvocationSummoningError
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<CommandErrorWrapper> for InvocationSummoningError
impl From<CommandErrorWrapper> for InvocationSummoningError
Source§fn from(source: CommandErrorWrapper) -> Self
fn from(source: CommandErrorWrapper) -> Self
Converts to this type from the input type.
Source§impl From<CompilerFindError> for InvocationSummoningError
impl From<CompilerFindError> for InvocationSummoningError
Source§fn from(source: CompilerFindError) -> Self
fn from(source: CompilerFindError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for InvocationSummoningError
impl From<Error> for InvocationSummoningError
Source§impl From<InstallError> for InvocationSummoningError
impl From<InstallError> for InvocationSummoningError
Source§fn from(source: InstallError) -> Self
fn from(source: InstallError) -> Self
Converts to this type from the input type.
Source§impl From<InvocationSummoningError> for Error
impl From<InvocationSummoningError> for Error
Source§fn from(source: InvocationSummoningError) -> Self
fn from(source: InvocationSummoningError) -> Self
Converts to this type from the input type.
Source§impl From<PythonError> for InvocationSummoningError
impl From<PythonError> for InvocationSummoningError
Source§fn from(source: PythonError) -> Self
fn from(source: PythonError) -> Self
Converts to this type from the input type.
Source§impl From<SetupErrorWrapper> for InvocationSummoningError
impl From<SetupErrorWrapper> for InvocationSummoningError
Source§fn from(source: SetupErrorWrapper) -> Self
fn from(source: SetupErrorWrapper) -> Self
Converts to this type from the input type.
Source§impl From<SummoningError> for InvocationSummoningError
impl From<SummoningError> for InvocationSummoningError
Source§fn from(source: SummoningError) -> Self
fn from(source: SummoningError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvocationSummoningError
impl !RefUnwindSafe for InvocationSummoningError
impl Send for InvocationSummoningError
impl Sync for InvocationSummoningError
impl Unpin for InvocationSummoningError
impl !UnwindSafe for InvocationSummoningError
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