pub struct ClientBuilder<P: Provider> { /* private fields */ }
Expand description
Setup Client
Implementations§
Source§impl<P: Provider> ClientBuilder<P>
impl<P: Provider> ClientBuilder<P>
Sourcepub fn client_secret(self, client_secret: &str) -> Self
pub fn client_secret(self, client_secret: &str) -> Self
Client secret
Sourcepub fn redirect_uri(self, redirect_uri: &str) -> Self
pub fn redirect_uri(self, redirect_uri: &str) -> Self
Redirect URI
Sourcepub fn response_mode(self, response_mode: OidcResponseMode) -> Self
pub fn response_mode(self, response_mode: OidcResponseMode) -> Self
Response mode
Auto Trait Implementations§
impl<P> Freeze for ClientBuilder<P>where
P: Freeze,
impl<P> RefUnwindSafe for ClientBuilder<P>where
P: RefUnwindSafe,
impl<P> Send for ClientBuilder<P>
impl<P> Sync for ClientBuilder<P>
impl<P> Unpin for ClientBuilder<P>where
P: Unpin,
impl<P> UnwindSafe for ClientBuilder<P>where
P: UnwindSafe,
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