Expand description
Error types for the lowlet crate.
This module provides a unified error type for all operations in the crate. Each variant includes an error code for programmatic handling and a human-readable description.
§Error Codes
All errors provide a machine-readable code via the Error::code method:
| Variant | Code | Description |
|---|---|---|
ShmCreate | E_SHM_CREATE | Failed to create shared memory segment |
ShmOpen | E_SHM_OPEN | Failed to open existing segment |
QueueFull | E_QUEUE_FULL | Queue has reached capacity |
QueueEmpty | E_QUEUE_EMPTY | No elements available |
Enums§
- Error
- Error type for all lowlet operations.
Type Aliases§
- Result
- A specialized Result type for lowlet operations.