Trait rdf_types::TryIntoIri

source ·
pub trait TryIntoIri: MaybeIri + Sized {
    // Required method
    fn try_into_iri(self) -> Result<Self::Iri, Self>;
}
Expand description

Types that can be turned into an iri.

Required Methods§

source

fn try_into_iri(self) -> Result<Self::Iri, Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I, B> TryIntoIri for Id<I, B>

source§

impl<I: TryIntoIri, L> TryIntoIri for Term<I, L>