pub type Result<T> = Result<T, DlqError>;
dlq
Result type for DLQ operations.
pub enum Result<T> { Ok(T), Err(DlqError), }
Contains the success value
Contains the error value