pub type PublisherError = ProcessingError;
pub enum PublisherError { Retryable(Error), NonRetryable(Error), }
A transient error occurred. The operation should be retried.
A permanent error occurred. The operation should not be retried.