Expand description
DCPS error types. Modeled on OMG DDS 1.4 §2.2.2.1 ReturnCode_t,
but as a Rust Result<T, DdsError> — considerably nicer than
sprayed error codes.
Modules§
- return_
code - OMG DDS 1.4
ReturnCode_tvalues. Disjoint withResult::Ok—RETCODE_OK = 0is not in this list because Ok is represented viaResult::Ok.
Enums§
- DdsError
- Errors from DCPS operations. Roughly analogous to the spec
ReturnCode_tenum; we omitRETCODE_OK(usingResult::Okinstead) and mergeBAD_PARAMETER+PRECONDITION_NOT_METwhere the distinction doesn’t help.
Type Aliases§
- Result
- Shorthand for DCPS results.