pub struct IdClaims {
pub oid: String,
pub tid: String,
pub preferred_username: String,
pub name: String,
}Expand description
Identity claims we extract from the id_token (oid, tid,
preferred_username, name).
Fields§
§oid: String§tid: String§preferred_username: String§name: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for IdClaims
impl RefUnwindSafe for IdClaims
impl Send for IdClaims
impl Sync for IdClaims
impl Unpin for IdClaims
impl UnsafeUnpin for IdClaims
impl UnwindSafe for IdClaims
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