pub type ParseBooleanError = ParseError;
pub type ParseDoubleError = core::num::ParseFloatError;
pub type ParseFloatError = core::num::ParseFloatError;
pub type ParseIntegerError = core::num::ParseIntError;
#[cfg(feature = "jiff")]
pub type ParseDateTimeError = jiff::Error;
#[cfg(feature = "jiff")]
pub type ParseDurationError = jiff::Error;
#[derive(Debug)]
pub struct ParseError;
impl core::fmt::Display for ParseError {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
write!(f, "parse error")
}
}
impl core::error::Error for ParseError {}
pub type ParseDecimalError = valuand::DecimalError;