//! Error and result type for IRI resolution.
use Error;
/// Type alias for `Result` with default error `TermError`.
///
/// Can be used like `std::result::Result` as well.
pub type Result<T, E = InvalidIri> = Result;
/// This error is raised when trying to parse an invalid IRI.
;