pub trait IntoIri: MaybeIri + Sized {
// Required method
fn try_into_iri(self) -> Result<Self::Iri, Self>;
// Provided method
fn into_iri(self) -> Option<Self::Iri> { ... }
}Expand description
Types that can be turned into an iri.
pub trait IntoIri: MaybeIri + Sized {
// Required method
fn try_into_iri(self) -> Result<Self::Iri, Self>;
// Provided method
fn into_iri(self) -> Option<Self::Iri> { ... }
}Types that can be turned into an iri.