Enum tauri_utils::config::CspDirectiveSources
source · pub enum CspDirectiveSources {
Inline(String),
List(Vec<String>),
}Expand description
A Content-Security-Policy directive source list. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/Sources#sources.
Variants§
Inline(String)
An inline list of CSP sources. Same as Self::List, but concatenated with a space separator.
List(Vec<String>)
A list of CSP sources. The collection will be concatenated with a space separator for the CSP string.
Implementations§
Trait Implementations§
source§impl Clone for CspDirectiveSources
impl Clone for CspDirectiveSources
source§fn clone(&self) -> CspDirectiveSources
fn clone(&self) -> CspDirectiveSources
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 CspDirectiveSources
impl Debug for CspDirectiveSources
source§impl Default for CspDirectiveSources
impl Default for CspDirectiveSources
source§impl<'de> Deserialize<'de> for CspDirectiveSources
impl<'de> Deserialize<'de> for CspDirectiveSources
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 From<CspDirectiveSources> for Vec<String>
impl From<CspDirectiveSources> for Vec<String>
source§fn from(sources: CspDirectiveSources) -> Self
fn from(sources: CspDirectiveSources) -> Self
Converts to this type from the input type.
source§impl PartialEq<CspDirectiveSources> for CspDirectiveSources
impl PartialEq<CspDirectiveSources> for CspDirectiveSources
source§fn eq(&self, other: &CspDirectiveSources) -> bool
fn eq(&self, other: &CspDirectiveSources) -> bool
This method tests for
self and other values to be equal, and is used
by ==.