dangerous 0.10.0

Safely and explicitly parse untrusted / dangerous data
Documentation
use crate::error::WithContext;

#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
impl<'i> crate::error::External<'i> for std::net::AddrParseError {
    fn push_backtrace<E>(self, error: E) -> E
    where
        E: WithContext<'i>,
    {
        error.with_context("IP address")
    }
}

#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
impl std::error::Error for crate::error::Invalid {}

#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
impl std::error::Error for crate::error::Fatal {}

#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
impl<'i, S> std::error::Error for crate::error::Expected<'i, S> where S: crate::error::Backtrace {}