rdf-reader-jsonld 0.4.1

A JSON-LD file reader for RDF.rs knowledge graphs.
Documentation
1
2
3
4
5
6
// This is free and unencumbered software released into the public domain.

pub type JsonldReaderResult<T> = core::result::Result<T, JsonldReaderError>;

/// An error encountered while reading a JSON-LD document.
pub type JsonldReaderError = oxjsonld::JsonLdParseError;