Enum astro_float::Error
source · pub enum Error {
ExponentOverflow(Sign),
DivisionByZero,
InvalidArgument,
MemoryAllocation(CollectionAllocErr),
}
Expand description
Possible errors.
Variants§
ExponentOverflow(Sign)
The exponent value becomes greater than the upper limit of the range of exponent values.
DivisionByZero
Divizor is zero.
InvalidArgument
Invalid argument.
MemoryAllocation(CollectionAllocErr)
Memory allocation error.