pub struct DeviceCode {
pub verification_url: String,
pub code: String,
}Expand description
The verification details a DeviceLoginFlow presents to the user.
Fields§
§verification_url: StringURL the user opens to approve the login.
code: StringShort confirmation code the user checks against the browser page.
Trait Implementations§
Source§impl Clone for DeviceCode
impl Clone for DeviceCode
Source§fn clone(&self) -> DeviceCode
fn clone(&self) -> DeviceCode
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 DeviceCode
impl Debug for DeviceCode
impl Eq for DeviceCode
Source§impl PartialEq for DeviceCode
impl PartialEq for DeviceCode
impl StructuralPartialEq for DeviceCode
Auto Trait Implementations§
impl Freeze for DeviceCode
impl RefUnwindSafe for DeviceCode
impl Send for DeviceCode
impl Sync for DeviceCode
impl Unpin for DeviceCode
impl UnsafeUnpin for DeviceCode
impl UnwindSafe for DeviceCode
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