#[non_exhaustive]pub enum PutRetryErrorClassification {
CommitIdReuseConflict(Option<PutRetryReceipt>),
RebootstrapRequired,
Other,
}Expand description
Classification of an error encountered while verifying a retried PUT.
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.
CommitIdReuseConflict(Option<PutRetryReceipt>)
The commit ID was already used. The receipt is included when available.
RebootstrapRequired
Retention removed the change record needed to verify the retry.
Other
Any error that does not have special handling during retry verification.
Trait Implementations§
Source§impl Clone for PutRetryErrorClassification
impl Clone for PutRetryErrorClassification
Source§fn clone(&self) -> PutRetryErrorClassification
fn clone(&self) -> PutRetryErrorClassification
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 moreSource§impl Debug for PutRetryErrorClassification
impl Debug for PutRetryErrorClassification
impl Eq for PutRetryErrorClassification
impl StructuralPartialEq for PutRetryErrorClassification
Auto Trait Implementations§
impl Freeze for PutRetryErrorClassification
impl RefUnwindSafe for PutRetryErrorClassification
impl Send for PutRetryErrorClassification
impl Sync for PutRetryErrorClassification
impl Unpin for PutRetryErrorClassification
impl UnsafeUnpin for PutRetryErrorClassification
impl UnwindSafe for PutRetryErrorClassification
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