Trait rdf_types::TryIntoId

source ·
pub trait TryIntoId: TryIntoIri + TryIntoBlankId {
    // Provided method
    fn try_into_id(self) -> Result<Id<Self::Iri, Self::BlankId>, Self> { ... }
}
Expand description

Type that can be converted into an Id.

Provided Methods§

source

fn try_into_id(self) -> Result<Id<Self::Iri, Self::BlankId>, Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

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