pub enum SagaJournalError {
Codec(String),
Backend(String),
}Expand description
Journal persistence failure.
Variants§
Trait Implementations§
Source§impl Debug for SagaJournalError
impl Debug for SagaJournalError
Source§impl Display for SagaJournalError
impl Display for SagaJournalError
Source§impl Error for SagaJournalError
impl Error for SagaJournalError
1.30.0 · 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<SagaJournalError> for SagaError
impl From<SagaJournalError> for SagaError
Source§fn from(source: SagaJournalError) -> Self
fn from(source: SagaJournalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SagaJournalError
impl RefUnwindSafe for SagaJournalError
impl Send for SagaJournalError
impl Sync for SagaJournalError
impl Unpin for SagaJournalError
impl UnsafeUnpin for SagaJournalError
impl UnwindSafe for SagaJournalError
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