Struct msal_browser::requests::SilentRequest[][src]

pub struct SilentRequest<'a> { /* fields omitted */ }

Implementations

impl<'a> SilentRequest<'a>[src]

pub fn new<T>(scopes: &'a [T], account_info: &'a AccountInfo) -> Self where
    T: Clone + Into<Cow<'a, str>>, 
[src]

pub fn set_force_refresh(self, force_refresh: bool) -> Self[src]

pub fn set_redirect_uri<T>(self, redirect_uri: T) -> Self where
    T: Into<Cow<'a, str>>, 
[src]

Trait Implementations

impl<'a> Clone for SilentRequest<'a>[src]

impl<'a> SetBaseAuthRequest<'a> for SilentRequest<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SilentRequest<'a>

impl<'a> Send for SilentRequest<'a>

impl<'a> Sync for SilentRequest<'a>

impl<'a> Unpin for SilentRequest<'a>

impl<'a> UnwindSafe for SilentRequest<'a>

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.