pub enum PermissionAction {
CommandExecute {
command: String,
args: Vec<String>,
},
FileRead {
path: String,
},
FileWrite {
path: String,
content_preview: Option<String>,
},
FileDelete {
path: String,
},
NetworkRequest {
url: String,
method: String,
},
EnvAccess {
names: Vec<String>,
},
PackageInstall {
packages: Vec<String>,
},
SystemAccess {
resource: String,
},
Custom {
description: String,
},
}Expand description
Actions that require permission
Variants§
CommandExecute
Execute a shell command
FileRead
Read a file
FileWrite
Write to a file
FileDelete
Delete a file
NetworkRequest
Make a network request
EnvAccess
Access environment variables
PackageInstall
Install packages
SystemAccess
Access system resources
Custom
Custom action with description
Implementations§
Trait Implementations§
Source§impl Clone for PermissionAction
impl Clone for PermissionAction
Source§fn clone(&self) -> PermissionAction
fn clone(&self) -> PermissionAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PermissionAction
impl Debug for PermissionAction
Source§impl<'de> Deserialize<'de> for PermissionAction
impl<'de> Deserialize<'de> for PermissionAction
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
impl Eq for PermissionAction
Source§impl Hash for PermissionAction
impl Hash for PermissionAction
Source§impl PartialEq for PermissionAction
impl PartialEq for PermissionAction
Source§fn eq(&self, other: &PermissionAction) -> bool
fn eq(&self, other: &PermissionAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PermissionAction
impl Serialize for PermissionAction
impl StructuralPartialEq for PermissionAction
Auto Trait Implementations§
impl Freeze for PermissionAction
impl RefUnwindSafe for PermissionAction
impl Send for PermissionAction
impl Sync for PermissionAction
impl Unpin for PermissionAction
impl UnsafeUnpin for PermissionAction
impl UnwindSafe for PermissionAction
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.