Enum tauri_utils::config::ShellAllowlistOpen
source · [−]Expand description
Defines the shell > open api scope.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Flag(bool)
If the shell open API should be enabled.
If enabled, the default validation regex (^https?://) is used.
Validate(String)
Enable the shell open API, with a custom regex that the opened path must match against.
If using a custom regex to support a non-http(s) schema, care should be used to prevent values
that allow flag-like strings to pass validation. e.g. --enable-debugging, -i, /R.
Trait Implementations
sourceimpl Clone for ShellAllowlistOpen
impl Clone for ShellAllowlistOpen
sourcefn clone(&self) -> ShellAllowlistOpen
fn clone(&self) -> ShellAllowlistOpen
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ShellAllowlistOpen
impl Debug for ShellAllowlistOpen
sourceimpl Default for ShellAllowlistOpen
impl Default for ShellAllowlistOpen
sourceimpl<'de> Deserialize<'de> for ShellAllowlistOpen
impl<'de> Deserialize<'de> for ShellAllowlistOpen
sourcefn 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
sourceimpl PartialEq<ShellAllowlistOpen> for ShellAllowlistOpen
impl PartialEq<ShellAllowlistOpen> for ShellAllowlistOpen
sourcefn eq(&self, other: &ShellAllowlistOpen) -> bool
fn eq(&self, other: &ShellAllowlistOpen) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ShellAllowlistOpen) -> bool
fn ne(&self, other: &ShellAllowlistOpen) -> bool
This method tests for !=.
sourceimpl Serialize for ShellAllowlistOpen
impl Serialize for ShellAllowlistOpen
impl StructuralPartialEq for ShellAllowlistOpen
Auto Trait Implementations
impl RefUnwindSafe for ShellAllowlistOpen
impl Send for ShellAllowlistOpen
impl Sync for ShellAllowlistOpen
impl Unpin for ShellAllowlistOpen
impl UnwindSafe for ShellAllowlistOpen
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more