pub enum ActivityOptionsErrorKind {
EmptyTaskQueue,
EmptyRetryPolicy,
InvalidMaxAttempts,
BackoffWithoutRetryBudget,
TooManyBackoffIntervals,
InvalidBackoffCoefficient,
BackoffGenerationTooLarge,
BackoffOverflow,
EmptyNonRetryableErrorType,
TimeoutNotPositive,
TimeoutOverflow,
TimeoutOrder,
}Expand description
Stable validation categories for ActivityOptions.
Variants§
EmptyTaskQueue
EmptyRetryPolicy
InvalidMaxAttempts
BackoffWithoutRetryBudget
TooManyBackoffIntervals
InvalidBackoffCoefficient
BackoffGenerationTooLarge
BackoffOverflow
EmptyNonRetryableErrorType
TimeoutNotPositive
TimeoutOverflow
TimeoutOrder
Trait Implementations§
Source§impl Clone for ActivityOptionsErrorKind
impl Clone for ActivityOptionsErrorKind
Source§fn clone(&self) -> ActivityOptionsErrorKind
fn clone(&self) -> ActivityOptionsErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ActivityOptionsErrorKind
Source§impl Debug for ActivityOptionsErrorKind
impl Debug for ActivityOptionsErrorKind
impl Eq for ActivityOptionsErrorKind
Source§impl PartialEq for ActivityOptionsErrorKind
impl PartialEq for ActivityOptionsErrorKind
impl StructuralPartialEq for ActivityOptionsErrorKind
Auto Trait Implementations§
impl Freeze for ActivityOptionsErrorKind
impl RefUnwindSafe for ActivityOptionsErrorKind
impl Send for ActivityOptionsErrorKind
impl Sync for ActivityOptionsErrorKind
impl Unpin for ActivityOptionsErrorKind
impl UnsafeUnpin for ActivityOptionsErrorKind
impl UnwindSafe for ActivityOptionsErrorKind
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