pub enum DeviceFlowResult {
Success(TokenBundle),
Pending,
Rejected,
Timeout(u64),
}Expand description
Result of the device-flow token polling.
Variants§
Success(TokenBundle)
success variant.
Pending
pending variant.
Rejected
rejected variant.
Timeout(u64)
timeout variant.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeviceFlowResult
impl RefUnwindSafe for DeviceFlowResult
impl Send for DeviceFlowResult
impl Sync for DeviceFlowResult
impl Unpin for DeviceFlowResult
impl UnsafeUnpin for DeviceFlowResult
impl UnwindSafe for DeviceFlowResult
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