pub trait TryExportTerm<I, L> {
    type Error;

    // Required method
    fn try_export_term(&self, term: Term<I, L>) -> Result<Term, Self::Error>;
}
Expand description

Type that can turn a Term<I, L> into a Term.

Required Associated Types§

Required Methods§

source

fn try_export_term(&self, term: Term<I, L>) -> Result<Term, Self::Error>

Turns a Term<I, L> into a Term.

Implementors§

source§

impl<I, L, V> TryExportTerm<I, L> for Vwhere I: IntoId, V: TryExportId<I::Iri, I::BlankId> + TryExportLiteral<L::String, L::Type, L::LanguageTag>, L: IntoLiteral,

§

type Error = Term<<V as TryExportId<<I as IntoId>::Iri, <I as IntoId>::BlankId>>::Error, <V as TryExportLiteral<<L as IntoLiteral>::String, <L as IntoLiteral>::Type, <L as IntoLiteral>::LanguageTag>>::Error>