#[non_exhaustive]pub enum WorkflowTaskTombstoneArchiveErrorKind {
Configuration,
Authorization,
Timeout,
Unavailable,
Integrity,
Ambiguous,
Other,
}Expand description
Stable failure class for archive retry and observability policy.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Configuration
Archive configuration or local signing policy is invalid.
Authorization
Remote credentials or policy rejected the request.
Timeout
The bounded archive operation elapsed.
The remote archive is temporarily unavailable.
Integrity
A committed object did not match the stable batch payload.
Ambiguous
Commit state could not be determined after reconciliation.
Other
A safe fallback for adapters without a more specific classification.
Trait Implementations§
Source§impl Clone for WorkflowTaskTombstoneArchiveErrorKind
impl Clone for WorkflowTaskTombstoneArchiveErrorKind
Source§fn clone(&self) -> WorkflowTaskTombstoneArchiveErrorKind
fn clone(&self) -> WorkflowTaskTombstoneArchiveErrorKind
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 WorkflowTaskTombstoneArchiveErrorKind
impl Eq for WorkflowTaskTombstoneArchiveErrorKind
impl StructuralPartialEq for WorkflowTaskTombstoneArchiveErrorKind
Auto Trait Implementations§
impl Freeze for WorkflowTaskTombstoneArchiveErrorKind
impl RefUnwindSafe for WorkflowTaskTombstoneArchiveErrorKind
impl Send for WorkflowTaskTombstoneArchiveErrorKind
impl Sync for WorkflowTaskTombstoneArchiveErrorKind
impl Unpin for WorkflowTaskTombstoneArchiveErrorKind
impl UnsafeUnpin for WorkflowTaskTombstoneArchiveErrorKind
impl UnwindSafe for WorkflowTaskTombstoneArchiveErrorKind
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.