Enum finite_fields::error::DivisionError [] [src]

pub enum DivisionError {
    DivideByZeroError {
        arg1: String,
    },
    OverflowError {
        arg1: String,
        arg2: String,
    },
}

Variants

Divide by zero error..

Fields of DivideByZeroError

Arithmetic overflow..

Fields of OverflowError

Trait Implementations

impl Debug for DivisionError
[src]

Formats the value using the given formatter.

impl Display for DivisionError
[src]

Formats the value using the given formatter.

impl Error for DivisionError
[src]

A short description of the error. Read more

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