Trait rdf_types::IntoTerm

source ·
pub trait IntoTerm {
    type Iri;
    type BlankId;
    type Literal;

    // Required method
    fn into_term(self) -> Term<Self::Iri, Self::BlankId, Self::Literal>;
}

Required Associated Types§

Required Methods§

source

fn into_term(self) -> Term<Self::Iri, Self::BlankId, Self::Literal>

Implementors§

source§

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

§

type Iri = I

§

type BlankId = B

§

type Literal = Infallible

source§

impl<I, B, L> IntoTerm for Term<I, B, L>

§

type Iri = I

§

type BlankId = B

§

type Literal = L