Enum finite_fields::error::ConversionError [] [src]

pub enum ConversionError {
    OverflowError {
        arg1: String,
    },
    PrecisionError {
        arg1: String,
        tgt_width: String,
    },
    LengthError {
        arg1: usize,
    },
}

Variants

Couldn't hold the target value in this type..

Fields of OverflowError

Precision lost in conversion to finite field type..

Fields of PrecisionError

Array passed in was the wrong length..

Fields of LengthError

Trait Implementations

impl Debug for ConversionError
[src]

Formats the value using the given formatter.

impl Display for ConversionError
[src]

Formats the value using the given formatter. Read more

impl Error for ConversionError
[src]

A short description of the error. Read more

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