pub enum DisabledCspModificationKind {
Flag(bool),
List(Vec<String>),
}Expand description
The possible values for the dangerous_disable_asset_csp_modification config option.
Variants§
Flag(bool)
If true, disables all CSP modification.
false is the default value and it configures Tauri to control the CSP.
List(Vec<String>)
Disables the given list of CSP directives modifications.
Implementations§
source§impl DisabledCspModificationKind
impl DisabledCspModificationKind
sourcepub fn can_modify(&self, directive: &str) -> bool
pub fn can_modify(&self, directive: &str) -> bool
Determines whether the given CSP directive can be modified or not.
Trait Implementations§
source§impl Clone for DisabledCspModificationKind
impl Clone for DisabledCspModificationKind
source§fn clone(&self) -> DisabledCspModificationKind
fn clone(&self) -> DisabledCspModificationKind
Returns a copy 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 DisabledCspModificationKind
impl Debug for DisabledCspModificationKind
source§impl<'de> Deserialize<'de> for DisabledCspModificationKind
impl<'de> Deserialize<'de> for DisabledCspModificationKind
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
source§impl PartialEq<DisabledCspModificationKind> for DisabledCspModificationKind
impl PartialEq<DisabledCspModificationKind> for DisabledCspModificationKind
source§fn eq(&self, other: &DisabledCspModificationKind) -> bool
fn eq(&self, other: &DisabledCspModificationKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.