Enum ErrorKind

Source
pub enum ErrorKind {
    DuplicatePkgbase,
    UndeclaredArch(String, String),
    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(String, String)

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§

Source§

impl Debug for ErrorKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ErrorKind

Source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<ErrorKind> for Error

Source§

fn from(kind: ErrorKind) -> Error

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.