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.
Required Methods§
fn try_into_iri(self) -> Result<Self::Iri, Self>
Provided Methods§
Object Safety§
This trait is not object safe.