lambdaworks_math/field/
errors.rs

1#[derive(Debug)]
2pub enum FieldError {
3    DivisionByZero,
4    /// Returns order of the calculated root of unity
5    RootOfUnityError(u64),
6    /// Can't calculate inverse of zero
7    InvZeroError,
8}