Enum rust_release_artefact::Error [] [src]

pub enum Error {
    IoError(Error),
    WalkDirError(Error),
    NoArtefacts(PathBuf),
    MultipleArtefacts(PathBuf),
    UnrecognisedFormat(String),
    NoComponents,
    EmptyComponent(String),
    UnrecognisedManifestRule(String),
    WildPath(PathBufPathBuf),
}

All the possible errors this crate can produce.

Variants

A filesystem access or permission error.

Straight from std::io in the Rust standard library, this could be anything related to reading or writing the filesystem, including permission errors, missing files, or metadata files containing invalid UTF-8 data.

A filesystem navigation error.

Straight from the walkdir crate, this error arises while interpreting artefact metadata and looking for all the files that belong to a component.

The given source or stage contains no valid release artefacts.

Returned when an ExtractedArtefact is created from an archive or stage directory that does not contain release artefact metadata.

The included PathBuf is the absolute path to the directory that does not contain any artefacts.

The given source or stage contains multiple release artefacts.

Returned when an ExtractedArtefact is created from an archive or stage directory that contains multiple sets of release artefact metadata. This is a problem because ExtractedArtefact can only represent a single artefact's metadata.

The included PathBuf is the absolute path to the directory that contains multiple sets of artefact metadata.

The given source or stage contains artefact metadata in an unrecognised format.

Rust's release artefacts include a marker file that describes which version of the metadata format they use. This error is returned when an ExtractedArtefact is created from an archive or stage directory that contains a marker file that mentions an unrecognised metadata format.

The included String is the content of the marker file.

The artefact metadata lists no components.

Returned when an ExtractedArtefact is created from an archive or stage directory whose metadata includes an empty list of components.

A component contains no files.

Returned when an ExtractedArtefact is created from an archive or stage directory where a component's manifest lists no files.

The included String is the name of the problem component.

A component's manifest contains an unrecognised rule.

Returned when an ExtractedArtefact is created from an archive or stage directory where a component's manifest (which is a list of rules describing which files this component installs) includes an unrecognised rule.

The included String is the text of the unrecognised rule.

While scanning for files inside a component, a file was found outside that component's directory.

This should not be possible, so if it happens something has gone horribly wrong.

The included paths are the component directory being scanned, and the file that was found outside it, respectively.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error