Trait rdf_types::IntoId

source ·
pub trait IntoId {
    type Iri;
    type BlankId;

    // Required method
    fn into_id(self) -> Id<Self::Iri, Self::BlankId>;
}
Expand description

Type that can be converted into an Id.

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

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

§

type Iri = I

§

type BlankId = B