Enum xc2bit::XC2BitError [] [src]

pub enum XC2BitError {
    JedParseError(JedParserError),
    BadDeviceName(String),
    WrongFuseCount,
    UnsupportedOeConfiguration((bool, bool, bool, bool)),
    UnsupportedZIAConfiguration(Vec<bool>),
}

Errors that can occur when parsing a bitstream

Variants

The .jed file could not be parsed

The device name is invalid

The number of fuses was incorrect for the device

An unknown value was used in the Oe field

An unknown value was used in the ZIA selection bits

Trait Implementations

impl Debug for XC2BitError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for XC2BitError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for XC2BitError
[src]

impl From<JedParserError> for XC2BitError
[src]

[src]

Performs the conversion.

impl Error for XC2BitError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for XC2BitError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for XC2BitError

impl Sync for XC2BitError