pub struct ResolvedBasicAuthContextConfig<Creds>{
pub creds: BasicAuthCredsConfig<Creds>,
pub real_ip_access: Option<RealIpAccessConfig>,
pub zones: Vec<ResolvedBasicAuthZoneConfig>,
pub realm: String,
pub post_auth_redirect: RedirectTargetConfig,
}Fields§
§creds: BasicAuthCredsConfig<Creds>§real_ip_access: Option<RealIpAccessConfig>§zones: Vec<ResolvedBasicAuthZoneConfig>§realm: String§post_auth_redirect: RedirectTargetConfigTrait Implementations§
Source§impl<Creds> Clone for ResolvedBasicAuthContextConfig<Creds>
impl<Creds> Clone for ResolvedBasicAuthContextConfig<Creds>
Source§fn clone(&self) -> ResolvedBasicAuthContextConfig<Creds>
fn clone(&self) -> ResolvedBasicAuthContextConfig<Creds>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Creds> Debug for ResolvedBasicAuthContextConfig<Creds>
impl<Creds> Debug for ResolvedBasicAuthContextConfig<Creds>
Auto Trait Implementations§
impl<Creds> Freeze for ResolvedBasicAuthContextConfig<Creds>
impl<Creds> RefUnwindSafe for ResolvedBasicAuthContextConfig<Creds>where
Creds: RefUnwindSafe,
impl<Creds> Send for ResolvedBasicAuthContextConfig<Creds>where
Creds: Send,
impl<Creds> Sync for ResolvedBasicAuthContextConfig<Creds>where
Creds: Sync,
impl<Creds> Unpin for ResolvedBasicAuthContextConfig<Creds>where
Creds: Unpin,
impl<Creds> UnsafeUnpin for ResolvedBasicAuthContextConfig<Creds>
impl<Creds> UnwindSafe for ResolvedBasicAuthContextConfig<Creds>where
Creds: UnwindSafe,
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