#[non_exhaustive]pub struct SecurityHeadersConfig {
pub x_content_type_options: bool,
pub x_frame_options: String,
pub referrer_policy: String,
pub hsts_max_age: Option<u64>,
pub content_security_policy: Option<String>,
pub permissions_policy: Option<String>,
}Expand description
Configuration for security response headers.
All fields have sensible defaults. Optional fields (hsts_max_age,
content_security_policy, permissions_policy) are None by default
and their corresponding headers are only added when set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.x_content_type_options: boolWhen true, adds X-Content-Type-Options: nosniff.
x_frame_options: StringValue for the X-Frame-Options header (e.g. "DENY", "SAMEORIGIN").
referrer_policy: StringValue for the Referrer-Policy header.
hsts_max_age: Option<u64>When set, adds Strict-Transport-Security: max-age=<value>.
content_security_policy: Option<String>When set, adds the Content-Security-Policy header with this value.
permissions_policy: Option<String>When set, adds the Permissions-Policy header with this value.
Trait Implementations§
Source§impl Clone for SecurityHeadersConfig
impl Clone for SecurityHeadersConfig
Source§fn clone(&self) -> SecurityHeadersConfig
fn clone(&self) -> SecurityHeadersConfig
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 SecurityHeadersConfig
impl Debug for SecurityHeadersConfig
Source§impl Default for SecurityHeadersConfig
impl Default for SecurityHeadersConfig
Source§impl<'de> Deserialize<'de> for SecurityHeadersConfigwhere
SecurityHeadersConfig: Default,
impl<'de> Deserialize<'de> for SecurityHeadersConfigwhere
SecurityHeadersConfig: Default,
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
Auto Trait Implementations§
impl Freeze for SecurityHeadersConfig
impl RefUnwindSafe for SecurityHeadersConfig
impl Send for SecurityHeadersConfig
impl Sync for SecurityHeadersConfig
impl Unpin for SecurityHeadersConfig
impl UnsafeUnpin for SecurityHeadersConfig
impl UnwindSafe for SecurityHeadersConfig
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