pub enum U128Error {
/// This error occurs when a `U128` is attempted to be downcast to a `u64` and the conversion would result in a loss of precision.
LossOfPrecision: (),
}
Expand description
The error type used for U128
type errors.
Variants
LossOfPrecision: ()
This error occurs when a U128
is attempted to be downcast to a u64
and the conversion would result in a loss of precision.