pub type OptionCookieSameSite = Option<String>;Expand description
Represents an optional cookie SameSite policy.
Specifies if/how cookies should be restricted to first-party sites when present. Possible values: “Strict”, “Lax”, or “None”.
Aliased Type§
pub enum OptionCookieSameSite {
None,
Some(String),
}