[][src]Enum srcinfo::ErrorKind

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

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

impl From<ErrorKind> for Error
[src]

impl Display for ErrorKind
[src]

impl Debug for ErrorKind
[src]

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]