[][src]Enum aiger::AigerError

pub enum AigerError {
    InvalidHeader,
    InvalidLiteral,
    LiteralOutOfRange,
    InvalidLiteralCount,
    InvalidInverted,
    InvalidSymbol,
    IoError,
}

An error which occurs while parsing an AIGER file.

Variants

InvalidHeader

No AIGER header could be found, or the header which was found could not be parsed.

InvalidLiteral

A literal which was not a positive integer was encountered.

LiteralOutOfRange

A literal with a variable greater than the maximum declared in the AIGER header was encountered.

InvalidLiteralCount

Too many or too few literals were encountered for the expected type of record.

InvalidInverted

An inverted literal was encountered where an inverted literal is not allowed.

InvalidSymbol

An invalid symbol table entry was encountered.

IoError

An IO error occurred while reading.

Trait Implementations

impl Clone for AigerError[src]

impl Copy for AigerError[src]

impl Debug for AigerError[src]

impl Eq for AigerError[src]

impl From<Error> for AigerError[src]

impl Hash for AigerError[src]

impl PartialEq<AigerError> for AigerError[src]

impl StructuralEq for AigerError[src]

impl StructuralPartialEq for AigerError[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.