pub enum InstallationError {
BinaryIsNotExecutable(PathBuf),
CommandError(Error),
FailedToRetrieveAPIVersion,
}
Variants§
Trait Implementations§
Source§impl Debug for InstallationError
impl Debug for InstallationError
Source§impl From<Error> for InstallationError
impl From<Error> for InstallationError
Source§impl From<InstallationError> for DiscoveryError
impl From<InstallationError> for DiscoveryError
Source§fn from(value: InstallationError) -> Self
fn from(value: InstallationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstallationError
impl !RefUnwindSafe for InstallationError
impl Send for InstallationError
impl Sync for InstallationError
impl Unpin for InstallationError
impl !UnwindSafe for InstallationError
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