Trait msal_browser::PublicClientApplication[][src]

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 get_account_by_home_id(&self, home_id: &str) -> Option<AccountInfo> { ... }
fn logout(&self, request: Option<EndSessionRequest<'_>>) { ... } }

Provided methods

Loading content...

Implementors

impl PublicClientApplication for PopupApp[src]

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

Loading content...