jiff 0.2.23

A date-time library that encourages you to jump into the pit of success. This library is heavily inspired by the Temporal project.
Documentation
use crate::{error, Unit};

#[derive(Clone, Debug)]
pub(crate) enum Error {
    ConvertNonFinite,
    ConvertSystemTime,
    RoundOverflowed { unit: Unit },
}

impl From<Error> for error::Error {
    #[cold]
    #[inline(never)]
    fn from(err: Error) -> error::Error {
        error::ErrorKind::SignedDuration(err).into()
    }
}

impl error::IntoError for Error {
    fn into_error(self) -> error::Error {
        self.into()
    }
}

impl core::fmt::Display for Error {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        use self::Error::*;

        match *self {
            ConvertNonFinite => f.write_str(
                "could not convert non-finite \
                 floating point seconds to signed duration \
                 (floating point seconds must be finite)",
            ),
            ConvertSystemTime => f.write_str(
                "failed to get duration between \
                 `std::time::SystemTime` values",
            ),
            RoundOverflowed { unit } => write!(
                f,
                "rounding signed duration to nearest {singular} \
                 resulted in a value outside the supported range \
                 of a `jiff::SignedDuration`",
                singular = unit.singular(),
            ),
        }
    }
}