pub struct AuthConfigBuilder { /* private fields */ }Implementations§
Source§impl AuthConfigBuilder
impl AuthConfigBuilder
Sourcepub fn admin_api_key_auth<T>(self, token: T) -> Self
pub fn admin_api_key_auth<T>(self, token: T) -> Self
Provides the Bearer token for this scheme.
Sourcepub fn api_key_auth<T>(self, token: T) -> Self
pub fn api_key_auth<T>(self, token: T) -> Self
Provides the Bearer token for this scheme.
Sourcepub fn build(self) -> AuthConfig
pub fn build(self) -> AuthConfig
Finalises into an AuthConfig.
Trait Implementations§
Source§impl Clone for AuthConfigBuilder
impl Clone for AuthConfigBuilder
Source§fn clone(&self) -> AuthConfigBuilder
fn clone(&self) -> AuthConfigBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthConfigBuilder
impl Debug for AuthConfigBuilder
Source§impl Default for AuthConfigBuilder
impl Default for AuthConfigBuilder
Source§fn default() -> AuthConfigBuilder
fn default() -> AuthConfigBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuthConfigBuilder
impl RefUnwindSafe for AuthConfigBuilder
impl Send for AuthConfigBuilder
impl Sync for AuthConfigBuilder
impl Unpin for AuthConfigBuilder
impl UnsafeUnpin for AuthConfigBuilder
impl UnwindSafe for AuthConfigBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.