pub enum DiscoveryError {
FailedToReadDirectory(Error),
InstallationError(InstallationError),
}
Variants§
FailedToReadDirectory(Error)
InstallationError(InstallationError)
Trait Implementations§
Source§impl Debug for DiscoveryError
impl Debug for DiscoveryError
Source§impl From<Error> for DiscoveryError
impl From<Error> for DiscoveryError
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 DiscoveryError
impl !RefUnwindSafe for DiscoveryError
impl Send for DiscoveryError
impl Sync for DiscoveryError
impl Unpin for DiscoveryError
impl !UnwindSafe for DiscoveryError
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