Crate static_iref

source ·
Expand description

This is a companion crate for iref providing macros to build 'static URI/IRIs and URI/IRI references at compile time.

Basic usage

Use the uri! (resp. iri!) macro to build URI (resp. IRI) statically, and the uri_ref! (resp iri_ref!) macro to build URI (resp. IRI) references statically.

use iref::{Iri, IriRef};
use static_iref::{iri, iri_ref};

const IRI: &'static Iri = iri!("https://www.rust-lang.org/foo/bar#frag");
const IRI_REF: &'static IriRef = iri_ref!("/foo/bar#frag");

Macros

  • Build an IRI with a 'static lifetime at compile time.
  • Build an IRI reference with a 'static lifetime at compile time.
  • Build an URI with a 'static lifetime at compile time.
  • Build an URI reference with a 'static lifetime at compile time.