pub trait ConfigIntegration {
// Required methods
fn auth_framework(&self) -> Option<&AuthFrameworkSettings>;
fn auth_framework_mut(&mut self) -> Option<&mut AuthFrameworkSettings>;
}Expand description
Helper trait for easy integration into parent application configurations
Required Methods§
Sourcefn auth_framework(&self) -> Option<&AuthFrameworkSettings>
fn auth_framework(&self) -> Option<&AuthFrameworkSettings>
Get the auth framework configuration section
Sourcefn auth_framework_mut(&mut self) -> Option<&mut AuthFrameworkSettings>
fn auth_framework_mut(&mut self) -> Option<&mut AuthFrameworkSettings>
Get the auth framework configuration section (mutable)