Enum srcinfo::ErrorKind

source ·
pub enum ErrorKind {
    DuplicatePkgbase,
    UndeclaredArch(StringString),
    KeyAfterPkgname(String),
    KeyBeforePkgbase(String),
    MissingField(String),
    EmptyKey,
    EmptyValue(String),
    NotArchSpecific(String),
    IoError(Error),
}
Expand description

A list of possible errors that may occur when parsing a .SRCINFO.

Variants that hold a string hold the key that caused the error.

UndeclaredArch holds the key that caused the error and the architecture.

IoError holds the underlying IO::Error.

Variants

DuplicatePkgbase

pkgbase was specified more than once

UndeclaredArch(StringString)

An architecture specific field was declared using an architecture that has not been declared

KeyAfterPkgname(String)

A key that must be used inside of the pkgbase section was used inside of a pkgname section

KeyBeforePkgbase(String)

A key that must be used inside of a pkgname section was used inside of the pkgbase section

MissingField(String)

A required field is missing

EmptyKey

A line has an empty key. E.g. “ = foo“

EmptyValue(String)

A line has an empty value where a value is required. E.g. “foo = “

NotArchSpecific(String)

An architecture specific field was declared on a field that can not be architecture specific

IoError(Error)

An IoError occurred

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.