usealloc::string::String;usesnafu::Snafu;#[derive(Snafu, Debug)]/// These errors occur when a scalar conversion fails.
pubenumScalarConversionError{#[snafu(display("Overflow error: {error}"))]/// This error occurs when a scalar is too large to be converted.
Overflow {/// The underlying error
error:String,},}