pub struct DeviceCode {
pub verification_url: String,
pub code: String,
}Expand description
The verification details a DeviceLoginFlow presents to the user.
Serde-serializable for relay to remote UIs.
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
Source§impl<'de> Deserialize<'de> for DeviceCode
impl<'de> Deserialize<'de> for DeviceCode
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 DeviceCode
Source§impl PartialEq for DeviceCode
impl PartialEq for DeviceCode
Source§impl Serialize for DeviceCode
impl Serialize 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