pub enum OutboxWriterError {
Persistence(Box<dyn Error + Send + Sync + 'static>),
NotInTransaction,
}Variants§
Trait Implementations§
Source§impl Debug for OutboxWriterError
impl Debug for OutboxWriterError
Source§impl Display for OutboxWriterError
impl Display for OutboxWriterError
Source§impl Error for OutboxWriterError
impl Error for OutboxWriterError
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<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.
Auto Trait Implementations§
impl Freeze for OutboxWriterError
impl !RefUnwindSafe for OutboxWriterError
impl Send for OutboxWriterError
impl Sync for OutboxWriterError
impl Unpin for OutboxWriterError
impl !UnwindSafe for OutboxWriterError
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