pub enum RegistryError {
Show 14 variants
NotFound {
name: String,
version: String,
},
Unauthorized {
message: String,
},
RateLimited {
retry_after: Option<Duration>,
},
Revoked {
name: String,
version: String,
reason: String,
safe_version: Option<String>,
},
DigestMismatch {
name: String,
version: String,
expected: String,
actual: String,
},
SignatureInvalid {
reason: String,
},
KeyNotTrusted {
key_id: String,
},
Unsigned {
name: String,
version: String,
},
InvalidReference {
reference: String,
reason: String,
},
Network {
message: String,
},
Cache {
message: String,
},
InvalidResponse {
message: String,
},
Config {
message: String,
},
Lockfile {
message: String,
},
}Expand description
Registry errors.
Variants§
NotFound
Pack not found in registry.
Authentication failed or token invalid.
Fields
RateLimited
Rate limit exceeded.
Revoked
Pack has been revoked (410 Gone).
Fields
DigestMismatch
Digest verification failed.
SignatureInvalid
Signature verification failed.
KeyNotTrusted
Key not trusted.
Unsigned
Pack is unsigned but unsigned packs are not allowed.
InvalidReference
Invalid pack reference format.
Network
Network error.
Cache
Cache error.
InvalidResponse
Invalid response from registry.
Config
Configuration error.
Lockfile
Lockfile error.
Implementations§
Source§impl RegistryError
impl RegistryError
Trait Implementations§
Source§impl Debug for RegistryError
impl Debug for RegistryError
Source§impl Display for RegistryError
impl Display for RegistryError
Source§impl Error for RegistryError
impl Error for RegistryError
1.30.0 · 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<CanonicalizeError> for RegistryError
impl From<CanonicalizeError> for RegistryError
Source§fn from(err: CanonicalizeError) -> Self
fn from(err: CanonicalizeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegistryError
impl RefUnwindSafe for RegistryError
impl Send for RegistryError
impl Sync for RegistryError
impl Unpin for RegistryError
impl UnsafeUnpin for RegistryError
impl UnwindSafe for RegistryError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.