Enum json_ld_expansion::Error
source · pub enum Error<M, E> {
Show 17 variants
ContextSyntax(InvalidContext),
ContextProcessing(Error<E>),
InvalidIndexValue,
InvalidSetOrListObject,
InvalidReversePropertyMap,
InvalidTypeValue,
KeyExpansionFailed,
InvalidReversePropertyValue,
InvalidLanguageMapValue,
CollidingKeywords,
InvalidIdValue,
InvalidIncludedValue,
InvalidReverseValue,
InvalidNestValue,
DuplicateKey(Meta<Key, M>),
Literal(LiteralExpansionError),
Value(InvalidValue),
}
Variants§
ContextSyntax(InvalidContext)
ContextProcessing(Error<E>)
InvalidIndexValue
InvalidSetOrListObject
InvalidReversePropertyMap
InvalidTypeValue
KeyExpansionFailed
InvalidReversePropertyValue
InvalidLanguageMapValue
CollidingKeywords
InvalidIdValue
InvalidIncludedValue
InvalidReverseValue
InvalidNestValue
DuplicateKey(Meta<Key, M>)
Literal(LiteralExpansionError)
Value(InvalidValue)
Implementations§
Trait Implementations§
source§impl<M, E> Error for Error<M, E>
impl<M, E> Error for Error<M, E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<M, E> RefUnwindSafe for Error<M, E>where
E: RefUnwindSafe,
M: RefUnwindSafe,
impl<M, E> Send for Error<M, E>
impl<M, E> Sync for Error<M, E>
impl<M, E> Unpin for Error<M, E>
impl<M, E> UnwindSafe for Error<M, E>where
E: UnwindSafe,
M: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more