Skip to main content

ResolverError

Enum ResolverError 

Source
pub enum ResolverError {
    NotADependency {
        name: String,
    },
    MissingFile {
        dep: String,
        path: PathBuf,
        kind: MissingFileKind,
    },
    NotInLockfile {
        dep: String,
    },
    LockfileSourceMismatch {
        dep: String,
    },
    SignerKeyMismatch {
        dep: String,
        expected: Box<VerifyingKey>,
        observed: Box<VerifyingKey>,
    },
    SignatureDowngrade {
        dep: String,
        expected_signer: Box<VerifyingKey>,
    },
    RequireSignedViolation {
        dep: String,
    },
    Io {
        path: PathBuf,
        source: Error,
    },
    Manifest(ManifestError),
    Lockfile(LockfileError),
    RelativePath(RelativePathError),
}
Expand description

An error returned by the Resolver trait or any resolver-layer operation.

Variants§

§

NotADependency

The symbolic path’s head does not appear in the consumer’s dependencies map.

Fields

§name: String

The undeclared dependency name.

§

MissingFile

A required file was not found, or was excluded.

Fields

§dep: String

The owning dependency.

§path: PathBuf

The relative path that was looked up.

§kind: MissingFileKind

Which kind of lookup failed.

§

NotInLockfile

A dependency is not present in the lockfile. Run sprocket module lock to update it.

Fields

§dep: String

The missing dependency.

§

LockfileSourceMismatch

The manifest source for a dependency does not match the lockfile source. Run sprocket module lock to update.

Fields

§dep: String

The dependency whose source changed.

§

SignerKeyMismatch

A cached module’s signature key does not match the lockfile’s recorded signer.

Fields

§dep: String

The owning dependency.

§expected: Box<VerifyingKey>

The signer key recorded in the lockfile.

§observed: Box<VerifyingKey>

The signer key observed in the cache.

§

SignatureDowngrade

A dependency was signed when the lockfile was written but is now unsigned. This prevents a supply-chain downgrade where an attacker strips the signature from a module whose content hash has not changed (since module.sig is excluded from the hash).

Fields

§dep: String

The owning dependency.

§expected_signer: Box<VerifyingKey>

The signer key recorded in the lockfile.

§

RequireSignedViolation

require_signed is enabled and the dependency is unsigned.

Fields

§dep: String

The unsigned dependency.

§

Io

An I/O error.

Fields

§path: PathBuf

The path involved.

§source: Error

The underlying I/O error.

§

Manifest(ManifestError)

A Manifest parse or validation error.

§

Lockfile(LockfileError)

A Lockfile parse or validation error.

§

RelativePath(RelativePathError)

A RelativePath validation error.

Trait Implementations§

Source§

impl Debug for ResolverError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ResolverError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ResolverError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<LockfileError> for ResolverError

Source§

fn from(source: LockfileError) -> Self

Converts to this type from the input type.
Source§

impl From<ManifestError> for ResolverError

Source§

fn from(source: ManifestError) -> Self

Converts to this type from the input type.
Source§

impl From<RelativePathError> for ResolverError

Source§

fn from(source: RelativePathError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.