Enum json_ld_core::loader::ContextLoadError  
source · pub enum ContextLoadError {
    LoadingDocumentFailed(LoadError),
    ContextExtractionFailed(ExtractContextError),
}Variants§
LoadingDocumentFailed(LoadError)
ContextExtractionFailed(ExtractContextError)
Trait Implementations§
source§impl Debug for ContextLoadError
 
impl Debug for ContextLoadError
source§impl Display for ContextLoadError
 
impl Display for ContextLoadError
source§impl Error for ContextLoadError
 
impl Error for ContextLoadError
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()
source§impl From<ExtractContextError> for ContextLoadError
 
impl From<ExtractContextError> for ContextLoadError
source§fn from(source: ExtractContextError) -> Self
 
fn from(source: ExtractContextError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ContextLoadError
impl !RefUnwindSafe for ContextLoadError
impl Send for ContextLoadError
impl Sync for ContextLoadError
impl Unpin for ContextLoadError
impl !UnwindSafe for ContextLoadError
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