Expand description
this module implements various error-handling primitives and utilities ths module implements various error-handling primitives and utilities
Structs§
- Error
Base - StdError
- The
StdErrortype is a generic error type that is generic over the error kind; this enables us to distinguish between distinctly different error types.
Enums§
Traits§
- Error
Kind - this trait is used to denote various error kinds for use throughout the sdk
Type Aliases§
- Dynamic
Error - A type alias for a
Errwhose generic type is aBoxof a trait object implementingcore::error::Error. - Result
- a type alias for a
Resulttype pre-configured with the [Error] type