pub trait Loader<I, M> {
type Output;
type Error;
fn load_with<'a>(
&'a mut self,
vocabulary: &'a mut impl Sync + Send + IriVocabularyMut<Iri = I>,
url: I
) -> Pin<Box<dyn Future<Output = Result<RemoteDocument<I, M, Self::Output>, Self::Error>> + Send + 'a, Global>>
where
I: 'a;
fn load<'a>(
&'a mut self,
url: I
) -> Pin<Box<dyn Future<Output = Result<RemoteDocument<I, M, Self::Output>, Self::Error>> + Send + 'a, Global>>
where
I: 'a,
(): IriVocabulary<Iri = I>,
{ ... }
}Expand description
Document loader.
A document loader is required by most processing functions to fetch remote documents identified by an IRI.
This library provides a few default loader implementations:
NoLoaderdummy loader that always fail. Perfect if you are certain that the processing will not require any loading.FsLoaderthat redirect registered IRI prefixes to a local directory on the file system. This way no network calls are performed and the loaded content can be trusted.ReqwestLoaderthat actually download the remote documents using thereqwestlibrary. This requires thereqwestfeature to be enabled.
Required Associated Types§
Required Methods§
sourcefn load_with<'a>(
&'a mut self,
vocabulary: &'a mut impl Sync + Send + IriVocabularyMut<Iri = I>,
url: I
) -> Pin<Box<dyn Future<Output = Result<RemoteDocument<I, M, Self::Output>, Self::Error>> + Send + 'a, Global>>where
I: 'a,
fn load_with<'a>(
&'a mut self,
vocabulary: &'a mut impl Sync + Send + IriVocabularyMut<Iri = I>,
url: I
) -> Pin<Box<dyn Future<Output = Result<RemoteDocument<I, M, Self::Output>, Self::Error>> + Send + 'a, Global>>where
I: 'a,
Loads the document behind the given IRI, using the given vocabulary.