Struct json_ld_core::loader::fs::FsLoader
source · pub struct FsLoader<I = Index, M = Location<I>, T = Value<M>, E = MetaError<M>> { /* private fields */ }
Expand description
File-system loader.
This is a special JSON-LD document loader that can load document from the file system by attaching a directory to specific URLs.
Loaded documents are not cached: a new file system read is made each time an URL is loaded even if it has already been queried before.
Implementations§
Trait Implementations§
source§impl<I: Clone> Default for FsLoader<I, Location<I>, Value<Location<I>>, MetaError<Location<I>>>
impl<I: Clone> Default for FsLoader<I, Location<I>, Value<Location<I>>, MetaError<Location<I>>>
source§impl<I: Send, T: Send, M: Send, E> Loader<I, M> for FsLoader<I, M, T, E>
impl<I: Send, T: Send, M: Send, E> Loader<I, M> for FsLoader<I, M, T, E>
source§fn load_with<'a>(
&'a mut self,
vocabulary: &'a mut impl Sync + Send + IriVocabulary<Iri = I>,
url: I
) -> BoxFuture<'a, Result<RemoteDocument<I, M, T>, Self::Error>>where
I: 'a,
fn load_with<'a>( &'a mut self, vocabulary: &'a mut impl Sync + Send + IriVocabulary<Iri = I>, url: I ) -> BoxFuture<'a, Result<RemoteDocument<I, M, T>, Self::Error>>where I: 'a,
Loads the document behind the given IRI, using the given vocabulary.