pub enum AuthorizeResult {
Unknown,
Ok,
Failed,
InFlight,
}Expand description
Authorization request result
Variants§
Unknown
Unknown error
Ok
Authorization flow started successfully
Failed
Failed to start authorization
InFlight
Authorization already in progress
Trait Implementations§
Source§impl Clone for AuthorizeResult
impl Clone for AuthorizeResult
Source§fn clone(&self) -> AuthorizeResult
fn clone(&self) -> AuthorizeResult
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 AuthorizeResult
impl Debug for AuthorizeResult
Source§impl From<u32> for AuthorizeResult
impl From<u32> for AuthorizeResult
Source§impl PartialEq for AuthorizeResult
impl PartialEq for AuthorizeResult
impl Copy for AuthorizeResult
impl Eq for AuthorizeResult
impl StructuralPartialEq for AuthorizeResult
Auto Trait Implementations§
impl Freeze for AuthorizeResult
impl RefUnwindSafe for AuthorizeResult
impl Send for AuthorizeResult
impl Sync for AuthorizeResult
impl Unpin for AuthorizeResult
impl UnwindSafe for AuthorizeResult
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