pub enum OutboxAttemptCountError {
NegativeValue(i64),
Overflow,
}Variants§
Trait Implementations§
Source§impl Debug for OutboxAttemptCountError
impl Debug for OutboxAttemptCountError
Source§impl Display for OutboxAttemptCountError
impl Display for OutboxAttemptCountError
Source§impl Error for OutboxAttemptCountError
impl Error for OutboxAttemptCountError
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<OutboxAttemptCountError> for OutboxError
impl From<OutboxAttemptCountError> for OutboxError
Source§fn from(source: OutboxAttemptCountError) -> Self
fn from(source: OutboxAttemptCountError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OutboxAttemptCountError
impl RefUnwindSafe for OutboxAttemptCountError
impl Send for OutboxAttemptCountError
impl Sync for OutboxAttemptCountError
impl Unpin for OutboxAttemptCountError
impl UnwindSafe for OutboxAttemptCountError
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