Struct tauri_utils::config::HttpAllowlistScope
source · pub struct HttpAllowlistScope(pub Vec<Url>);Expand description
HTTP API scope definition. It is a list of URLs that can be accessed by the webview when using the HTTP APIs. The scoped URL is matched against the request URL using a glob pattern.
Examples:
- “https://**”: allows all HTTPS urls
- “https://*.github.com/tauri-apps/tauri”: allows any subdomain of “github.com” with the “tauri-apps/api” path
- “https://myapi.service.com/users/*”: allows access to any URLs that begins with “https://myapi.service.com/users/”
Tuple Fields§
§0: Vec<Url>Trait Implementations§
source§impl Clone for HttpAllowlistScope
impl Clone for HttpAllowlistScope
source§fn clone(&self) -> HttpAllowlistScope
fn clone(&self) -> HttpAllowlistScope
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 HttpAllowlistScope
impl Debug for HttpAllowlistScope
source§impl Default for HttpAllowlistScope
impl Default for HttpAllowlistScope
source§fn default() -> HttpAllowlistScope
fn default() -> HttpAllowlistScope
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for HttpAllowlistScope
impl<'de> Deserialize<'de> for HttpAllowlistScope
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<HttpAllowlistScope> for HttpAllowlistScope
impl PartialEq<HttpAllowlistScope> for HttpAllowlistScope
source§fn eq(&self, other: &HttpAllowlistScope) -> bool
fn eq(&self, other: &HttpAllowlistScope) -> bool
This method tests for
self and other values to be equal, and is used
by ==.