Crate overflow_error

Source
Expand description

Common overflow error types.

Structs§

DivByZero
Division could not be performed due to division by zero.
Overflowed
Operation was performed and overflowed or underflowed.
WouldOverflow
Operation was not performed, as it would result in overflow or underflow.

Enums§

CannotDiv
Either DivByZero or WouldOverflow.
DivWarning
Either DivByZero or Overflowed.

Traits§

Error
A discrete error with a known description.