Documentation | Crate informations | Repository |
This is a companion crate for iref
providing two macros to build 'static
IRIs and IRI references at compile time.
Use the iri!
macro to build IRI statically, and the iref!
macro to build
IRI references statically.
```rust extern crate iref;
extern crate static_iref;
use iref::{Iri, IriRef};
const IRI: Iri<'static> = iri!("https://www.rust-lang.org/foo/bar#frag"); const IREF: IriRef<'static> = iref!("/foo/bar#frag"); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.