Expand description
Typed error hierarchy. Typed error hierarchy for the SDK.
Every fallible boundary returns Result<T> aliased to this crate’s
Error. Wrapping inner errors via #[from] keeps call sites terse
(foo()?) while preserving the underlying source for tracing and
std::error::Error::source walks.
Enums§
- Error
- All errors the SDK can produce.
Type Aliases§
- Result
- Convenience alias for
std::result::Result<T, localharness::Error>.