pub enum CompareAndSwapOutcome {
Updated,
RefreshMismatch,
Missing,
}Expand description
Result of a refresh-token compare-and-swap attempt.
Variants§
Updated
The refresh secret matched the expected value and the record was updated.
RefreshMismatch
The record exists but the expected refresh secret did not match.
Missing
No record matched the provided family + scope.
Trait Implementations§
Source§impl Clone for CompareAndSwapOutcome
impl Clone for CompareAndSwapOutcome
Source§fn clone(&self) -> CompareAndSwapOutcome
fn clone(&self) -> CompareAndSwapOutcome
Returns a duplicate 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 CompareAndSwapOutcome
impl Debug for CompareAndSwapOutcome
Source§impl<'de> Deserialize<'de> for CompareAndSwapOutcome
impl<'de> Deserialize<'de> for CompareAndSwapOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CompareAndSwapOutcome
impl PartialEq for CompareAndSwapOutcome
Source§impl Serialize for CompareAndSwapOutcome
impl Serialize for CompareAndSwapOutcome
impl Copy for CompareAndSwapOutcome
impl Eq for CompareAndSwapOutcome
impl StructuralPartialEq for CompareAndSwapOutcome
Auto Trait Implementations§
impl Freeze for CompareAndSwapOutcome
impl RefUnwindSafe for CompareAndSwapOutcome
impl Send for CompareAndSwapOutcome
impl Sync for CompareAndSwapOutcome
impl Unpin for CompareAndSwapOutcome
impl UnwindSafe for CompareAndSwapOutcome
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
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§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.