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 for HttpAllowlistScope
impl PartialEq for HttpAllowlistScope
source§impl Serialize for HttpAllowlistScope
impl Serialize for HttpAllowlistScope
impl Eq for HttpAllowlistScope
impl StructuralPartialEq for HttpAllowlistScope
Auto Trait Implementations§
impl Freeze for HttpAllowlistScope
impl RefUnwindSafe for HttpAllowlistScope
impl Send for HttpAllowlistScope
impl Sync for HttpAllowlistScope
impl Unpin for HttpAllowlistScope
impl UnwindSafe for HttpAllowlistScope
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.