pub trait IndexedIri: From<usize> + for<'a> TryFrom<&'a Iri> {
    // Required method
    fn index(&self) -> IriOrIndex<&Iri>;
}
Expand description

Partly indexed IRI identifier type.

Required Methods§

source

fn index(&self) -> IriOrIndex<&Iri>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl IndexedIri for IriIndex

source§

impl<I> IndexedIri for IriOrIndex<I>
where I: AsRef<Iri> + for<'a> TryFrom<&'a Iri>,