pub struct AuthConfigBuilder { /* private fields */ }Expand description
Builder for AuthConfig
Implementations§
Source§impl AuthConfigBuilder
impl AuthConfigBuilder
pub fn new() -> Self
pub fn jwt(self, config: JwtConfig) -> Self
pub fn oauth(self, config: OAuthConfig) -> Self
pub fn ldap(self, config: LdapConfig) -> Self
pub fn api_keys(self, config: ApiKeyConfig) -> Self
pub fn add_role_mapping(self, rule: RoleMappingRule) -> Self
pub fn default_role(self, role: impl Into<String>) -> Self
pub fn credentials(self, config: CredentialConfig) -> Self
pub fn session(self, config: SessionConfig) -> Self
pub fn build(self) -> AuthConfig
Trait Implementations§
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> 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 more