pub enum RegistryResolveError {
Client(RegistryClientError),
Ambiguous(String),
}Variants§
Client(RegistryClientError)
Ambiguous(String)
Trait Implementations§
Source§impl Debug for RegistryResolveError
impl Debug for RegistryResolveError
Source§impl Display for RegistryResolveError
impl Display for RegistryResolveError
Source§impl Error for RegistryResolveError
impl Error for RegistryResolveError
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<RegistryClientError> for RegistryResolveError
impl From<RegistryClientError> for RegistryResolveError
Source§fn from(source: RegistryClientError) -> Self
fn from(source: RegistryClientError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegistryResolveError
impl RefUnwindSafe for RegistryResolveError
impl Send for RegistryResolveError
impl Sync for RegistryResolveError
impl Unpin for RegistryResolveError
impl UnsafeUnpin for RegistryResolveError
impl UnwindSafe for RegistryResolveError
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