Enum edgedb_tokio::RetryCondition
source · #[non_exhaustive]pub enum RetryCondition {
TransactionConflict,
NetworkError,
}Expand description
Specific condition for retrying queries
This is used for fine-grained control for retrying queries and transactions
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.
TransactionConflict
Optimistic transaction error
NetworkError
Network failure between client and server
Trait Implementations§
source§impl Clone for RetryCondition
impl Clone for RetryCondition
source§fn clone(&self) -> RetryCondition
fn clone(&self) -> RetryCondition
Returns a copy of the value. Read more
1.0.0 · 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 RetryCondition
impl Debug for RetryCondition
source§impl Hash for RetryCondition
impl Hash for RetryCondition
source§impl PartialEq for RetryCondition
impl PartialEq for RetryCondition
source§fn eq(&self, other: &RetryCondition) -> bool
fn eq(&self, other: &RetryCondition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for RetryCondition
impl Eq for RetryCondition
impl StructuralPartialEq for RetryCondition
Auto Trait Implementations§
impl Freeze for RetryCondition
impl RefUnwindSafe for RetryCondition
impl Send for RetryCondition
impl Sync for RetryCondition
impl Unpin for RetryCondition
impl UnwindSafe for RetryCondition
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