Module err

Module err 

Source
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:

VariantCodeDescription
ShmCreateE_SHM_CREATEFailed to create shared memory segment
ShmOpenE_SHM_OPENFailed to open existing segment
QueueFullE_QUEUE_FULLQueue has reached capacity
QueueEmptyE_QUEUE_EMPTYNo elements available

Enums§

Error
Error type for all lowlet operations.

Type Aliases§

Result
A specialized Result type for lowlet operations.