[][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 Debug for ErrorKind[src]

impl Display for ErrorKind[src]

impl From<ErrorKind> for Error[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.