ConfigIntegration

Trait ConfigIntegration 

Source
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§

Source

fn auth_framework(&self) -> Option<&AuthFrameworkSettings>

Get the auth framework configuration section

Source

fn auth_framework_mut(&mut self) -> Option<&mut AuthFrameworkSettings>

Get the auth framework configuration section (mutable)

Implementors§