iri_s 0.2.9

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! IRI simple wrapper
//!
//! This module contains a simple wrapper to work with IRIs
//! The main goal is that we can use a simple interface to work with IRIs
//! which could be adapted to different implementations in the future if needed.
//!
//! The library provides the macro [`iri`] to create [`IriS`] from strings.
//!
pub mod error;
mod iri;
mod mime_type;

pub use crate::iri::{Iri, IriS};
pub use crate::mime_type::MimeType;