pub const POSITIVE_IRIS: &[(&str, IriRefStructure<'_>)];
Expand description

An array of valid IRI references.

Each element is a pair containing

  • the IRI references, and
  • a tuple made of
    • a bool indicating whether it is absolute or not,
    • an Option<&str> containing this IRI’s scheme (if any),
    • an Option<&str> containing this IRI’s authority (if any),
    • a &[&str] containing this IRI’s path elements,
    • an Option<&str> containing this IRI’s query string (if any),
    • an Option<&str> containing this IRI’s fragment identifier (if any).