validators 0.25.3

This library is designed for validating and modeling user input. The crate includes models, functions, traits, errors, and other dependencies.
Documentation
use core::fmt::{self, Display, Formatter};
#[cfg(feature = "std")]
use std::error::Error;

use crate::url;

/// Error from the `url` validator.
#[derive(Debug, Clone)]
pub struct UrlError(pub url::ParseError);

impl From<url::ParseError> for UrlError {
    #[inline]
    fn from(error: url::ParseError) -> Self {
        Self(error)
    }
}

impl Display for UrlError {
    #[inline]
    fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
        Display::fmt(&self.0, f)
    }
}

#[cfg(feature = "std")]
impl Error for UrlError {}