pub struct SiteAuthConfig {
pub login_path: &'static str,
pub protected_prefixes: &'static [&'static str],
pub public_prefixes: &'static [&'static str],
pub required_scope: &'static str,
}Fields§
§login_path: &'static str§protected_prefixes: &'static [&'static str]§public_prefixes: &'static [&'static str]§required_scope: &'static strTrait Implementations§
Source§impl Clone for SiteAuthConfig
impl Clone for SiteAuthConfig
Source§fn clone(&self) -> SiteAuthConfig
fn clone(&self) -> SiteAuthConfig
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 Debug for SiteAuthConfig
impl Debug for SiteAuthConfig
impl Copy for SiteAuthConfig
Auto Trait Implementations§
impl Freeze for SiteAuthConfig
impl RefUnwindSafe for SiteAuthConfig
impl Send for SiteAuthConfig
impl Sync for SiteAuthConfig
impl Unpin for SiteAuthConfig
impl UnsafeUnpin for SiteAuthConfig
impl UnwindSafe for SiteAuthConfig
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