Enum cargo_metadata::Error [] [src]

pub enum Error {
    Io(Error),
    Utf8(Utf8Error),
    Json(Error),
}

Possible errors that can occur during metadata parsing.

Variants

Error during execution of cargo metadata

Output of cargo metadata was not valid utf8

Deserialization error (structure of json did not match expected structure)

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.