pub enum PreparedActionError {
MissingIdempotencyKey,
}Expand description
Invalid product action prepared for durable dispatch.
Variants§
MissingIdempotencyKey
The product did not provide its idempotency key.
Trait Implementations§
Source§impl Debug for PreparedActionError
impl Debug for PreparedActionError
Source§impl Display for PreparedActionError
impl Display for PreparedActionError
impl Eq for PreparedActionError
Source§impl Error for PreparedActionError
impl Error for PreparedActionError
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 PartialEq for PreparedActionError
impl PartialEq for PreparedActionError
impl StructuralPartialEq for PreparedActionError
Auto Trait Implementations§
impl Freeze for PreparedActionError
impl RefUnwindSafe for PreparedActionError
impl Send for PreparedActionError
impl Sync for PreparedActionError
impl Unpin for PreparedActionError
impl UnsafeUnpin for PreparedActionError
impl UnwindSafe for PreparedActionError
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