pub struct Config {Show 21 fields
pub application_credential: ApplicationCredentialProvider,
pub api_policy: PolicyProvider,
pub assignment: AssignmentProvider,
pub auth: AuthProvider,
pub catalog: CatalogProvider,
pub database: DatabaseSection,
pub default: DefaultSection,
pub distributed_storage: Option<DistributedStorageConfiguration>,
pub federation: FederationProvider,
pub fernet_tokens: FernetTokenProvider,
pub identity: IdentityProvider,
pub identity_mapping: IdentityMappingProvider,
pub k8s_auth: K8sAuthProvider,
pub resource: ResourceProvider,
pub revoke: RevokeProvider,
pub role: RoleProvider,
pub security_compliance: SecurityComplianceProvider,
pub token: TokenProvider,
pub token_restriction: TokenRestrictionProvider,
pub trust: TrustProvider,
pub webauthn: WebauthnSection,
}Expand description
Keystone configuration.
Fields§
§application_credential: ApplicationCredentialProviderApplication credentials provider configuration.
api_policy: PolicyProviderAPI policy enforcement.
assignment: AssignmentProviderAssignments (roles) provider configuration.
auth: AuthProviderAuthentication configuration.
catalog: CatalogProviderCatalog provider configuration.
database: DatabaseSectionDatabase configuration.
default: DefaultSectionGlobal configuration options.
distributed_storage: Option<DistributedStorageConfiguration>Distributed storage configuration.
federation: FederationProviderFederation provider configuration.
fernet_tokens: FernetTokenProviderFernet tokens provider configuration.
identity: IdentityProviderIdentity provider configuration.
identity_mapping: IdentityMappingProviderIdentity mapping provider configuration.
k8s_auth: K8sAuthProviderK8s Auth provider configuration.
resource: ResourceProviderResource provider configuration.
revoke: RevokeProviderRevoke provider configuration.
role: RoleProviderRole provider configuration.
security_compliance: SecurityComplianceProviderSecurity compliance configuration.
token: TokenProviderToken provider configuration.
token_restriction: TokenRestrictionProviderToken restriction provider configuration.
trust: TrustProviderTrust provider configuration.
webauthn: WebauthnSectionWebauthn configuration.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl TryFrom<ConfigBuilder<DefaultState>> for Config
impl TryFrom<ConfigBuilder<DefaultState>> for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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 more