pub type IntoDocumentResult<I, B> = Result<Document<I, B>, ExpandError>;
Expand description
Result returned by the JsonLdProcessor::into_document
function.
Aliased Type§
pub enum IntoDocumentResult<I, B> {
Ok(Document<I, B>),
Err(ExpandError),
}