pub enum AxiolidError {
EmptySubjectId,
ForeignSubject {
subject_id: String,
},
IntegrationUnavailable {
integration: &'static str,
},
}Expand description
Errors from geometry evidence adaptation.
Variants§
EmptySubjectId
An empty source-local subject cannot be safely qualified.
ForeignSubject
Evidence belonged to a different source scope.
A required kernel or CAD SDK integration is deliberately not implemented.
Trait Implementations§
Source§impl Debug for AxiolidError
impl Debug for AxiolidError
Source§impl Display for AxiolidError
impl Display for AxiolidError
Source§impl Error for AxiolidError
impl Error for AxiolidError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for AxiolidError
impl PartialEq for AxiolidError
impl Eq for AxiolidError
impl StructuralPartialEq for AxiolidError
Auto Trait Implementations§
impl Freeze for AxiolidError
impl RefUnwindSafe for AxiolidError
impl Send for AxiolidError
impl Sync for AxiolidError
impl Unpin for AxiolidError
impl UnwindSafe for AxiolidError
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