[][src]Struct msal_browser::AuthenticationResult

pub struct AuthenticationResult { /* fields omitted */ }

Implementations

impl AuthenticationResult[src]

pub fn unique_id(&self) -> &str[src]

pub fn tenant_id(&self) -> &str[src]

pub fn scopes(&self) -> &Vec<String>[src]

pub fn account(&self) -> &AccountInfo[src]

pub fn id_token(&self) -> &str[src]

pub fn id_token_claims(&self) -> &TokenClaims[src]

pub fn access_token(&self) -> &str[src]

pub fn from_cache(&self) -> &bool[src]

pub fn expires_on(&self) -> &Date[src]

pub fn ext_expires_on(&self) -> Option<&Date>[src]

pub fn state(&self) -> Option<&str>[src]

pub fn family_id(&self) -> Option<&str>[src]

Trait Implementations

impl Clone for AuthenticationResult[src]

impl From<JsValue> for AuthenticationResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.