[][src]Trait msal_browser::PublicClientApplication

pub trait PublicClientApplication: Msal {
    fn client_id(&self) -> String { ... }
fn authority(&self) -> Option<String> { ... }
fn redirect_uri(&self) -> Option<String> { ... }
fn get_all_accounts(&self) -> Option<Vec<AccountInfo>> { ... }
fn get_account_by_username(&self, username: &str) -> Option<AccountInfo> { ... }
fn logout<'a>(&self, request: Option<EndSessionRequest<'a>>) { ... } }

Provided methods

fn client_id(&self) -> String

fn authority(&self) -> Option<String>

fn redirect_uri(&self) -> Option<String>

fn get_all_accounts(&self) -> Option<Vec<AccountInfo>>

fn get_account_by_username(&self, username: &str) -> Option<AccountInfo>

fn logout<'a>(&self, request: Option<EndSessionRequest<'a>>)

Loading content...

Implementors

impl PublicClientApplication for PopupApp[src]

impl<FSuccess> PublicClientApplication for RedirectApp<FSuccess> where
    FSuccess: Fn(AuthenticationResult), 
[src]

Loading content...