[][src]Crate ruspiro_error

Basic Error trait

This is more or less the same as found in Rust std library: Error but made available in [no_std] environment where an allocator is in place, which is the case for the RusPiRo family.

Structs

GenericError

The most generic Error type. This can be used if no specific error type will be implemented and returning an erro only containing an error message is sufficient.

Traits

Error

The generic Error trait. All actual errors implementing this trait also need to implement Debug and Display to provide human readable text of the error.

Type Definitions

BoxError

The type that shall be used as Error type when returning a Result. This allows conviniently use the ? operator on functions or methods.