pub enum ActionClass {
Read,
Diagnose,
WorkspaceWrite,
Execute,
Network,
Delegate,
Sensitive,
}Expand description
Runtime-owned action classification.
Variants§
Read
Reads workspace data without executing a process.
Diagnose
Runs diagnostics or tests that may create ignored artifacts.
WorkspaceWrite
Modifies workspace files.
Execute
Runs an arbitrary local process or shell.
Network
Accesses an external network service beyond the selected model provider.
Delegate
Requests a budgeted child session and may merge a reviewed workspace handoff.
Sensitive
Destructive, credential, or out-of-workspace action.
Trait Implementations§
Source§impl Clone for ActionClass
impl Clone for ActionClass
Source§fn clone(&self) -> ActionClass
fn clone(&self) -> ActionClass
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 moreimpl Copy for ActionClass
Source§impl Debug for ActionClass
impl Debug for ActionClass
Source§impl<'de> Deserialize<'de> for ActionClass
impl<'de> Deserialize<'de> for ActionClass
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 ActionClass
Source§impl Ord for ActionClass
impl Ord for ActionClass
Source§fn cmp(&self, other: &ActionClass) -> Ordering
fn cmp(&self, other: &ActionClass) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ActionClass
impl PartialEq for ActionClass
Source§impl PartialOrd for ActionClass
impl PartialOrd for ActionClass
Source§impl Serialize for ActionClass
impl Serialize for ActionClass
impl StructuralPartialEq for ActionClass
Auto Trait Implementations§
impl Freeze for ActionClass
impl RefUnwindSafe for ActionClass
impl Send for ActionClass
impl Sync for ActionClass
impl Unpin for ActionClass
impl UnsafeUnpin for ActionClass
impl UnwindSafe for ActionClass
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