Trait rdf_types::IntoId

source ·
pub trait IntoId: AsId {
    // Required method
    fn into_id(self) -> Id<Self::Iri, Self::BlankId>;
}
Expand description

Type that can be converted into an Id.

Required Methods§

source

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

Implementors§

source§

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