pub struct RemoteDocument<I = IriBuf, T = Value> {
pub url: Option<I>,
pub content_type: Option<Mime>,
pub context_url: Option<I>,
pub profile: HashSet<Profile<I>>,
pub document: T,
}
Expand description
Remote document.
Stores the content of a loaded remote document along with its original URL.
Fields§
§url: Option<I>
The final URL of the loaded document, after eventual redirection.
content_type: Option<Mime>
The HTTP Content-Type
header value of the loaded document, exclusive
of any optional parameters.
context_url: Option<I>
If available, the value of the HTTP Link Header
RFC 8288 using the
http://www.w3.org/ns/json-ld#context
link relation in the response.
If the response’s Content-Type
is application/ld+json
, the HTTP
Link Header
is ignored. If multiple HTTP Link Headers
using the
http://www.w3.org/ns/json-ld#context
link relation are found, the
loader fails with a multiple context link headers
error.
profile: HashSet<Profile<I>>
§document: T
The retrieved document.
Implementations§
Source§impl<I, T> RemoteDocument<I, T>
impl<I, T> RemoteDocument<I, T>
Sourcepub fn new(
url: Option<I>,
content_type: Option<Mime>,
document: T,
) -> RemoteDocument<I, T>
pub fn new( url: Option<I>, content_type: Option<Mime>, document: T, ) -> RemoteDocument<I, T>
Creates a new remote document.
url
is the final URL of the loaded document, after eventual
redirection.
content_type
is the HTTP Content-Type
header value of the loaded
document, exclusive of any optional parameters.
Sourcepub fn new_full(
url: Option<I>,
content_type: Option<Mime>,
context_url: Option<I>,
profile: HashSet<Profile<I>>,
document: T,
) -> RemoteDocument<I, T>
pub fn new_full( url: Option<I>, content_type: Option<Mime>, context_url: Option<I>, profile: HashSet<Profile<I>>, document: T, ) -> RemoteDocument<I, T>
Creates a new remote document.
url
is the final URL of the loaded document, after eventual
redirection.
content_type
is the HTTP Content-Type
header value of the loaded
document, exclusive of any optional parameters.
context_url
is the value of the HTTP Link Header
RFC 8288 using the
http://www.w3.org/ns/json-ld#context
link relation in the response,
if any.
profile
is the value of any profile parameter retrieved as part of the
original contentType.
Sourcepub fn map<U>(self, f: impl Fn(T) -> U) -> RemoteDocument<I, U>
pub fn map<U>(self, f: impl Fn(T) -> U) -> RemoteDocument<I, U>
Maps the content of the remote document.
Sourcepub fn try_map<U, E>(
self,
f: impl Fn(T) -> Result<U, E>,
) -> Result<RemoteDocument<I, U>, E>
pub fn try_map<U, E>( self, f: impl Fn(T) -> Result<U, E>, ) -> Result<RemoteDocument<I, U>, E>
Tries to map the content of the remote document.
Sourcepub fn map_iris<J>(self, f: impl FnMut(I) -> J) -> RemoteDocument<J, T>
pub fn map_iris<J>(self, f: impl FnMut(I) -> J) -> RemoteDocument<J, T>
Maps all the IRIs.
Sourcepub fn url(&self) -> Option<&I>
pub fn url(&self) -> Option<&I>
Returns a reference to the final URL of the loaded document, after eventual redirection.
Sourcepub fn content_type(&self) -> Option<&Mime>
pub fn content_type(&self) -> Option<&Mime>
Returns the HTTP Content-Type
header value of the loaded document,
exclusive of any optional parameters.
Sourcepub fn context_url(&self) -> Option<&I>
pub fn context_url(&self) -> Option<&I>
Returns the value of the HTTP Link Header
RFC 8288 using the
http://www.w3.org/ns/json-ld#context
link relation in the response,
if any.
If the response’s Content-Type
is application/ld+json
, the HTTP
Link Header
is ignored. If multiple HTTP Link Headers
using the
http://www.w3.org/ns/json-ld#context
link relation are found, the
loader fails with a multiple context link headers
error.
Sourcepub fn document_mut(&mut self) -> &mut T
pub fn document_mut(&mut self) -> &mut T
Returns a mutable reference to the content of the document.
Sourcepub fn into_document(self) -> T
pub fn into_document(self) -> T
Drops the original URL and returns the content of the document.
Trait Implementations§
Source§impl<I, B> Borrow<RemoteDocument<I>> for Document<I, B>
impl<I, B> Borrow<RemoteDocument<I>> for Document<I, B>
Source§fn borrow(&self) -> &RemoteDocument<I>
fn borrow(&self) -> &RemoteDocument<I>
Source§impl<I, T> Clone for RemoteDocument<I, T>
impl<I, T> Clone for RemoteDocument<I, T>
Source§fn clone(&self) -> RemoteDocument<I, T>
fn clone(&self) -> RemoteDocument<I, T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<I, T> Debug for RemoteDocument<I, T>
impl<I, T> Debug for RemoteDocument<I, T>
Source§impl<Iri> Expand<Iri> for RemoteDocument<Iri>
Remote document expansion.
impl<Iri> Expand<Iri> for RemoteDocument<Iri>
Remote document expansion.
The default base URL given to the expansion algorithm is the URL of the remote document.
Source§fn default_base_url(&self) -> Option<&Iri>
fn default_base_url(&self) -> Option<&Iri>
Expand::expand
or Expand::expand_with
.Source§async fn expand_full<N, L, W>(
&self,
vocabulary: &mut N,
context: Context<Iri, <N as BlankIdVocabulary>::BlankId>,
base_url: Option<&Iri>,
loader: &L,
options: Options,
warnings_handler: W,
) -> Result<ExpandedDocument<Iri, <N as BlankIdVocabulary>::BlankId>, Error>where
N: VocabularyMut<Iri = Iri>,
Iri: Clone + Eq + Hash,
<N as BlankIdVocabulary>::BlankId: Clone + Eq + Hash,
L: Loader,
W: WarningHandler<N>,
async fn expand_full<N, L, W>(
&self,
vocabulary: &mut N,
context: Context<Iri, <N as BlankIdVocabulary>::BlankId>,
base_url: Option<&Iri>,
loader: &L,
options: Options,
warnings_handler: W,
) -> Result<ExpandedDocument<Iri, <N as BlankIdVocabulary>::BlankId>, Error>where
N: VocabularyMut<Iri = Iri>,
Iri: Clone + Eq + Hash,
<N as BlankIdVocabulary>::BlankId: Clone + Eq + Hash,
L: Loader,
W: WarningHandler<N>,
Source§async fn expand_with<'a, N, L>(
&'a self,
vocabulary: &'a mut N,
loader: &'a L,
) -> Result<ExpandedDocument<Iri, <N as BlankIdVocabulary>::BlankId>, Error>where
N: VocabularyMut<Iri = Iri>,
Iri: 'a + Clone + Eq + Hash,
<N as BlankIdVocabulary>::BlankId: 'a + Clone + Eq + Hash,
L: Loader,
async fn expand_with<'a, N, L>(
&'a self,
vocabulary: &'a mut N,
loader: &'a L,
) -> Result<ExpandedDocument<Iri, <N as BlankIdVocabulary>::BlankId>, Error>where
N: VocabularyMut<Iri = Iri>,
Iri: 'a + Clone + Eq + Hash,
<N as BlankIdVocabulary>::BlankId: 'a + Clone + Eq + Hash,
L: Loader,
vocabulary
to interpret identifiers. Read moreSource§impl<I> JsonLdProcessor<I> for RemoteDocument<I>
impl<I> JsonLdProcessor<I> for RemoteDocument<I>
Source§async fn compare_full<N>(
&self,
other: &Self,
vocabulary: &mut N,
loader: &impl Loader,
options: Options<I>,
warnings: impl WarningHandler<N> + WarningHandler<N>,
) -> CompareResult
async fn compare_full<N>( &self, other: &Self, vocabulary: &mut N, loader: &impl Loader, options: Options<I>, warnings: impl WarningHandler<N> + WarningHandler<N>, ) -> CompareResult
other
with a custom vocabulary using the
given options
and warnings handler. Read moreSource§async fn expand_full<N>(
&self,
vocabulary: &mut N,
loader: &impl Loader,
options: Options<I>,
warnings: impl WarningHandler<N> + WarningHandler<N>,
) -> ExpandResult<I, N::BlankId>
async fn expand_full<N>( &self, vocabulary: &mut N, loader: &impl Loader, options: Options<I>, warnings: impl WarningHandler<N> + WarningHandler<N>, ) -> ExpandResult<I, N::BlankId>
vocabulary
and loader
, using
the given options
and warning handler. Read moreasync fn into_document_full<'a, N>( self, vocabulary: &'a mut N, loader: &'a impl Loader, options: Options<I>, warnings: impl 'a + WarningHandler<N> + WarningHandler<N>, ) -> IntoDocumentResult<I, N::BlankId>
Source§async fn compact_full<'a, N>(
&'a self,
vocabulary: &'a mut N,
context: RemoteContextReference<I>,
loader: &'a impl Loader,
options: Options<I>,
warnings: impl 'a + WarningHandler<N> + WarningHandler<N>,
) -> CompactResult
async fn compact_full<'a, N>( &'a self, vocabulary: &'a mut N, context: RemoteContextReference<I>, loader: &'a impl Loader, options: Options<I>, warnings: impl 'a + WarningHandler<N> + WarningHandler<N>, ) -> CompactResult
context
with the given vocabulary
and loader
, using the given options
and warning handler. Read moreSource§async fn flatten_full<'a, N>(
&'a self,
vocabulary: &'a mut N,
generator: &'a mut impl Generator<N>,
context: Option<RemoteContextReference<I>>,
loader: &'a impl Loader,
options: Options<I>,
warnings: impl 'a + WarningHandler<N> + WarningHandler<N>,
) -> FlattenResult<I, N::BlankId>
async fn flatten_full<'a, N>( &'a self, vocabulary: &'a mut N, generator: &'a mut impl Generator<N>, context: Option<RemoteContextReference<I>>, loader: &'a impl Loader, options: Options<I>, warnings: impl 'a + WarningHandler<N> + WarningHandler<N>, ) -> FlattenResult<I, N::BlankId>
vocabulary
, generator
and loader
, using the given options
and warning handler. Read moreSource§async fn compare_with_using<'a, N>(
&'a self,
other: &'a Self,
vocabulary: &'a mut N,
loader: &'a impl Loader,
options: Options<Iri>,
) -> CompareResult
async fn compare_with_using<'a, N>( &'a self, other: &'a Self, vocabulary: &'a mut N, loader: &'a impl Loader, options: Options<Iri>, ) -> CompareResult
Source§async fn compare_with<'a, N>(
&'a self,
other: &'a Self,
vocabulary: &'a mut N,
loader: &'a impl Loader,
) -> CompareResult
async fn compare_with<'a, N>( &'a self, other: &'a Self, vocabulary: &'a mut N, loader: &'a impl Loader, ) -> CompareResult
other
with a custom vocabulary. Read moreSource§async fn compare_using<'a>(
&'a self,
other: &'a Self,
loader: &'a impl Loader,
options: Options<Iri>,
) -> CompareResult
async fn compare_using<'a>( &'a self, other: &'a Self, loader: &'a impl Loader, options: Options<Iri>, ) -> CompareResult
Source§async fn compare<'a>(
&'a self,
other: &'a Self,
loader: &'a impl Loader,
) -> CompareResult
async fn compare<'a>( &'a self, other: &'a Self, loader: &'a impl Loader, ) -> CompareResult
other
with a custom vocabulary. Read moreSource§async fn expand_with_using<'a, N>(
&'a self,
vocabulary: &'a mut N,
loader: &'a impl Loader,
options: Options<Iri>,
) -> ExpandResult<Iri, N::BlankId>
async fn expand_with_using<'a, N>( &'a self, vocabulary: &'a mut N, loader: &'a impl Loader, options: Options<Iri>, ) -> ExpandResult<Iri, N::BlankId>
Source§async fn expand_with<'a, N>(
&'a self,
vocabulary: &'a mut N,
loader: &'a impl Loader,
) -> ExpandResult<Iri, N::BlankId>
async fn expand_with<'a, N>( &'a self, vocabulary: &'a mut N, loader: &'a impl Loader, ) -> ExpandResult<Iri, N::BlankId>
Source§async fn expand_using<'a>(
&'a self,
loader: &'a impl Loader,
options: Options<Iri>,
) -> ExpandResult<Iri, BlankIdBuf>
async fn expand_using<'a>( &'a self, loader: &'a impl Loader, options: Options<Iri>, ) -> ExpandResult<Iri, BlankIdBuf>
Source§async fn expand<'a>(
&'a self,
loader: &'a impl Loader,
) -> ExpandResult<Iri, BlankIdBuf>
async fn expand<'a>( &'a self, loader: &'a impl Loader, ) -> ExpandResult<Iri, BlankIdBuf>
loader
. Read moreasync fn into_document_with_using<'a, N>( self, vocabulary: &'a mut N, loader: &'a impl Loader, options: Options<Iri>, ) -> IntoDocumentResult<Iri, N::BlankId>
async fn into_document_with<'a, N>( self, vocabulary: &'a mut N, loader: &'a impl Loader, ) -> IntoDocumentResult<Iri, N::BlankId>
async fn into_document<'a>( self, loader: &'a impl Loader, ) -> IntoDocumentResult<Iri, BlankIdBuf>
Source§async fn compact_with_using<'a, N>(
&'a self,
vocabulary: &'a mut N,
context: RemoteContextReference<Iri>,
loader: &'a impl Loader,
options: Options<Iri>,
) -> CompactResult
async fn compact_with_using<'a, N>( &'a self, vocabulary: &'a mut N, context: RemoteContextReference<Iri>, loader: &'a impl Loader, options: Options<Iri>, ) -> CompactResult
context
with the given vocabulary
and loader
, using the given options
. Read moreSource§async fn compact_with<'a, N>(
&'a self,
vocabulary: &'a mut N,
context: RemoteContextReference<Iri>,
loader: &'a impl Loader,
) -> CompactResult
async fn compact_with<'a, N>( &'a self, vocabulary: &'a mut N, context: RemoteContextReference<Iri>, loader: &'a impl Loader, ) -> CompactResult
Source§async fn compact_using<'a>(
&'a self,
context: RemoteContextReference<Iri>,
loader: &'a impl Loader,
options: Options<Iri>,
) -> CompactResult
async fn compact_using<'a>( &'a self, context: RemoteContextReference<Iri>, loader: &'a impl Loader, options: Options<Iri>, ) -> CompactResult
Source§async fn compact<'a>(
&'a self,
context: RemoteContextReference<Iri>,
loader: &'a impl Loader,
) -> CompactResult
async fn compact<'a>( &'a self, context: RemoteContextReference<Iri>, loader: &'a impl Loader, ) -> CompactResult
Source§async fn flatten_with_using<'a, N>(
&'a self,
vocabulary: &'a mut N,
generator: &'a mut impl Generator<N>,
loader: &'a impl Loader,
options: Options<Iri>,
) -> FlattenResult<Iri, N::BlankId>
async fn flatten_with_using<'a, N>( &'a self, vocabulary: &'a mut N, generator: &'a mut impl Generator<N>, loader: &'a impl Loader, options: Options<Iri>, ) -> FlattenResult<Iri, N::BlankId>
vocabulary
, generator
and loader
, using the given options
. Read moreSource§async fn flatten_with<'a, N>(
&'a self,
vocabulary: &'a mut N,
generator: &'a mut impl Generator<N>,
loader: &'a impl Loader,
) -> FlattenResult<Iri, N::BlankId>
async fn flatten_with<'a, N>( &'a self, vocabulary: &'a mut N, generator: &'a mut impl Generator<N>, loader: &'a impl Loader, ) -> FlattenResult<Iri, N::BlankId>
Source§async fn flatten_using<'a>(
&'a self,
generator: &'a mut impl Generator,
loader: &'a impl Loader,
options: Options<Iri>,
) -> FlattenResult<Iri, BlankIdBuf>
async fn flatten_using<'a>( &'a self, generator: &'a mut impl Generator, loader: &'a impl Loader, options: Options<Iri>, ) -> FlattenResult<Iri, BlankIdBuf>
Source§async fn flatten<'a>(
&'a self,
generator: &'a mut impl Generator,
loader: &'a impl Loader,
) -> FlattenResult<Iri, BlankIdBuf>
async fn flatten<'a>( &'a self, generator: &'a mut impl Generator, loader: &'a impl Loader, ) -> FlattenResult<Iri, BlankIdBuf>
Source§async fn to_rdf_full<N, G>(
&self,
vocabulary: N,
generator: G,
loader: &impl Loader,
options: Options<Iri>,
warnings: impl WarningHandler<N> + WarningHandler<N>,
) -> ToRdfResult<N, G>
async fn to_rdf_full<N, G>( &self, vocabulary: N, generator: G, loader: &impl Loader, options: Options<Iri>, warnings: impl WarningHandler<N> + WarningHandler<N>, ) -> ToRdfResult<N, G>
options
and warnings handler. Read moreSource§async fn to_rdf_with_using<N, G>(
&self,
vocabulary: N,
generator: G,
loader: &impl Loader,
options: Options<Iri>,
) -> ToRdfResult<N, G>
async fn to_rdf_with_using<N, G>( &self, vocabulary: N, generator: G, loader: &impl Loader, options: Options<Iri>, ) -> ToRdfResult<N, G>
options
. Read moreSource§async fn to_rdf_with<N, G>(
&self,
vocabulary: N,
generator: G,
loader: &impl Loader,
) -> ToRdfResult<N, G>
async fn to_rdf_with<N, G>( &self, vocabulary: N, generator: G, loader: &impl Loader, ) -> ToRdfResult<N, G>
Source§async fn to_rdf_using<G>(
&self,
generator: G,
loader: &impl Loader,
options: Options<Iri>,
) -> ToRdfResult<(), G>
async fn to_rdf_using<G>( &self, generator: G, loader: &impl Loader, options: Options<Iri>, ) -> ToRdfResult<(), G>
options
. Read more