pub enum OutboxRelayError {
Fetcher(OutboxFetcherError),
Publisher(PublisherError),
Writer(OutboxWriterError),
UnitOfWork(UnitOfWorkError),
UnitOfWorkFactory(UnitOfWorkFactoryError),
Outbox(OutboxError),
NonPendingOutboxState(OutboxState),
}Variants§
Fetcher(OutboxFetcherError)
Publisher(PublisherError)
Writer(OutboxWriterError)
UnitOfWork(UnitOfWorkError)
UnitOfWorkFactory(UnitOfWorkFactoryError)
Outbox(OutboxError)
NonPendingOutboxState(OutboxState)
Trait Implementations§
Source§impl Debug for OutboxRelayError
impl Debug for OutboxRelayError
Source§impl Display for OutboxRelayError
impl Display for OutboxRelayError
Source§impl Error for OutboxRelayError
impl Error for OutboxRelayError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<OutboxError> for OutboxRelayError
impl From<OutboxError> for OutboxRelayError
Source§fn from(source: OutboxError) -> Self
fn from(source: OutboxError) -> Self
Converts to this type from the input type.
Source§impl From<OutboxFetcherError> for OutboxRelayError
impl From<OutboxFetcherError> for OutboxRelayError
Source§fn from(source: OutboxFetcherError) -> Self
fn from(source: OutboxFetcherError) -> Self
Converts to this type from the input type.
Source§impl From<OutboxWriterError> for OutboxRelayError
impl From<OutboxWriterError> for OutboxRelayError
Source§fn from(source: OutboxWriterError) -> Self
fn from(source: OutboxWriterError) -> Self
Converts to this type from the input type.
Source§impl From<PublisherError> for OutboxRelayError
impl From<PublisherError> for OutboxRelayError
Source§fn from(source: PublisherError) -> Self
fn from(source: PublisherError) -> Self
Converts to this type from the input type.
Source§impl From<UnitOfWorkError> for OutboxRelayError
impl From<UnitOfWorkError> for OutboxRelayError
Source§fn from(source: UnitOfWorkError) -> Self
fn from(source: UnitOfWorkError) -> Self
Converts to this type from the input type.
Source§impl From<UnitOfWorkFactoryError> for OutboxRelayError
impl From<UnitOfWorkFactoryError> for OutboxRelayError
Source§fn from(source: UnitOfWorkFactoryError) -> Self
fn from(source: UnitOfWorkFactoryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OutboxRelayError
impl !RefUnwindSafe for OutboxRelayError
impl Send for OutboxRelayError
impl Sync for OutboxRelayError
impl Unpin for OutboxRelayError
impl !UnwindSafe for OutboxRelayError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more