Expand description
CFE informational status code handling.
While error conditions are represented by the Error enum, cFE APIs can also
return a variety of non-error “informational” status codes. This module
provides the Status enum to represent these successful-but-noteworthy
outcomes, and a check function to triage a raw CFE_Status_t into either
a Result<Status, Error>.
Enums§
- Status
- Represents non-error, informational status codes from cFE APIs.
Functions§
- check
- Converts a raw CFE status code into a
Result<Status, Error>for idiomatic error handling.