Trait Loader

Source
pub trait Loader {
    // Required method
    async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>;

    // Provided method
    async fn load_with<V>(
        &self,
        vocabulary: &mut V,
        url: <V as IriVocabulary>::Iri,
    ) -> Result<RemoteDocument<<V as IriVocabulary>::Iri>, LoadError>
       where V: IriVocabularyMut,
             <V as IriVocabulary>::Iri: Clone + Eq + Hash { ... }
}
Expand description

Document loader.

A document loader is required by most processing functions to fetch remote documents identified by an IRI. In particular, the loader is in charge of fetching all the remote contexts imported in a @context entry.

This library provides a few default loader implementations:

  • NoLoader dummy loader that always fail. Perfect if you are certain that the processing will not require any loading.
  • Standard HashMap and BTreeMap mapping IRIs to pre-loaded documents. This way no network calls are performed and the loaded content can be trusted.
  • FsLoader that redirecting registered IRI prefixes to a local directory on the file system. This also avoids network calls. The loaded content can be trusted as long as the file system is trusted.
  • ReqwestLoader actually downloading the remote documents using the reqwest library. This requires the reqwest feature to be enabled.

Required Methods§

Source

async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>

Loads the document behind the given IRI.

Provided Methods§

Source

async fn load_with<V>( &self, vocabulary: &mut V, url: <V as IriVocabulary>::Iri, ) -> Result<RemoteDocument<<V as IriVocabulary>::Iri>, LoadError>
where V: IriVocabularyMut, <V as IriVocabulary>::Iri: Clone + Eq + Hash,

Loads the document behind the given IRI, using the given vocabulary.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Loader for BTreeMap<IriBuf, RemoteDocument>

Source§

async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>

Source§

impl Loader for HashMap<IriBuf, RemoteDocument>

Source§

async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>

Source§

impl<'l, L> Loader for &'l L
where L: Loader,

Source§

async fn load_with<V>( &self, vocabulary: &mut V, url: <V as IriVocabulary>::Iri, ) -> Result<RemoteDocument<<V as IriVocabulary>::Iri>, LoadError>
where V: IriVocabularyMut, <V as IriVocabulary>::Iri: Clone + Eq + Hash,

Source§

async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>

Source§

impl<'l, L> Loader for &'l mut L
where L: Loader,

Source§

async fn load_with<V>( &self, vocabulary: &mut V, url: <V as IriVocabulary>::Iri, ) -> Result<RemoteDocument<<V as IriVocabulary>::Iri>, LoadError>
where V: IriVocabularyMut, <V as IriVocabulary>::Iri: Clone + Eq + Hash,

Source§

async fn load(&self, url: &Iri) -> Result<RemoteDocument, LoadError>

Implementors§

Source§

impl Loader for FsLoader

Source§

impl Loader for NoLoader

Source§

impl Loader for ReqwestLoader

Source§

impl<L1, L2> Loader for ChainLoader<L1, L2>
where L1: Loader, L2: Loader,