Type Alias json_ld::FlattenResult
source · pub type FlattenResult<I, B> = Result<Value, FlattenError<I, B>>;
Expand description
Result of the JsonLdProcessor::flatten
function.
Aliased Type§
enum FlattenResult<I, B> {
Ok(Value),
Err(FlattenError<I, B>),
}