pub enum AuthCompletionState {
Pending,
Complete,
Failed,
Stale,
}Expand description
Typed result returned by the local-only completion-status read.
Variants§
Trait Implementations§
Source§impl Clone for AuthCompletionState
impl Clone for AuthCompletionState
Source§fn clone(&self) -> AuthCompletionState
fn clone(&self) -> AuthCompletionState
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 AuthCompletionState
Source§impl Debug for AuthCompletionState
impl Debug for AuthCompletionState
Source§impl<'de> Deserialize<'de> for AuthCompletionState
impl<'de> Deserialize<'de> for AuthCompletionState
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
impl Eq for AuthCompletionState
Source§impl PartialEq for AuthCompletionState
impl PartialEq for AuthCompletionState
Source§impl Serialize for AuthCompletionState
impl Serialize for AuthCompletionState
impl StructuralPartialEq for AuthCompletionState
Auto Trait Implementations§
impl Freeze for AuthCompletionState
impl RefUnwindSafe for AuthCompletionState
impl Send for AuthCompletionState
impl Sync for AuthCompletionState
impl Unpin for AuthCompletionState
impl UnsafeUnpin for AuthCompletionState
impl UnwindSafe for AuthCompletionState
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