pub type HandlerError = ProcessingError;Aliased Type§
pub enum HandlerError {
Retryable(Error),
NonRetryable(Error),
Connection(Error),
}Variants§
Retryable(Error)
A transient error occurred. The operation should be retried.
NonRetryable(Error)
A permanent error occurred. The operation should not be retried.
Connection(Error)
A connection-level error occurred. Used to signal broker disconnects, etc.