pub enum AuthPollResult {
Pending,
Done(String),
Failed(String),
}Variants§
Trait Implementations§
Source§impl Clone for AuthPollResult
impl Clone for AuthPollResult
Source§fn clone(&self) -> AuthPollResult
fn clone(&self) -> AuthPollResult
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 AuthPollResult
impl Debug for AuthPollResult
Source§impl<'de> Deserialize<'de> for AuthPollResult
impl<'de> Deserialize<'de> for AuthPollResult
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
Auto Trait Implementations§
impl Freeze for AuthPollResult
impl RefUnwindSafe for AuthPollResult
impl Send for AuthPollResult
impl Sync for AuthPollResult
impl Unpin for AuthPollResult
impl UnsafeUnpin for AuthPollResult
impl UnwindSafe for AuthPollResult
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