#[non_exhaustive]pub struct UserInfoResult {
pub family_name: Option<String>,
pub given_name: Option<String>,
pub email: Option<String>,
pub email_verified: Option<bool>,
pub iss: String,
pub sub: String,
}
Available on crate features
sync_routes
and dbx_openid
only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.family_name: Option<String>
Last name of user.
given_name: Option<String>
First name of user.
email: Option<String>
Email address of user.
email_verified: Option<bool>
If user is email verified.
iss: String
Issuer of token (in this case Dropbox).
sub: String
An identifier for the user. This is the Dropbox account_id, a string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc.
Implementations§
Source§impl UserInfoResult
impl UserInfoResult
pub fn with_family_name(self, value: String) -> Self
pub fn with_given_name(self, value: String) -> Self
pub fn with_email(self, value: String) -> Self
pub fn with_email_verified(self, value: bool) -> Self
pub fn with_iss(self, value: String) -> Self
pub fn with_sub(self, value: String) -> Self
Trait Implementations§
Source§impl Clone for UserInfoResult
impl Clone for UserInfoResult
Source§fn clone(&self) -> UserInfoResult
fn clone(&self) -> UserInfoResult
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 UserInfoResult
impl Debug for UserInfoResult
Source§impl Default for UserInfoResult
impl Default for UserInfoResult
Source§fn default() -> UserInfoResult
fn default() -> UserInfoResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserInfoResult
impl<'de> Deserialize<'de> for UserInfoResult
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UserInfoResult
impl PartialEq for UserInfoResult
Source§impl Serialize for UserInfoResult
impl Serialize for UserInfoResult
impl Eq for UserInfoResult
impl StructuralPartialEq for UserInfoResult
Auto Trait Implementations§
impl Freeze for UserInfoResult
impl RefUnwindSafe for UserInfoResult
impl Send for UserInfoResult
impl Sync for UserInfoResult
impl Unpin for UserInfoResult
impl UnwindSafe for UserInfoResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.