pub enum AutonomyLevel {
Operator,
Collaborator,
Consultant,
Approver,
Observer,
}Expand description
Autonomy level for agent decisions (from DeepMind research).
Determines how much independent authority an agent has.
Variants§
Operator
Executes directed tasks with minimal discretion
Collaborator
Shared workflows with humans, can propose actions
Consultant
Analysis and recommendation only, no direct actions
Approver
Authorized to act within defined boundaries
Observer
Monitors and alerts only, no actions permitted
Trait Implementations§
Source§impl Clone for AutonomyLevel
impl Clone for AutonomyLevel
Source§fn clone(&self) -> AutonomyLevel
fn clone(&self) -> AutonomyLevel
Returns a duplicate 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 ComposeSchema for AutonomyLevel
impl ComposeSchema for AutonomyLevel
Source§impl Debug for AutonomyLevel
impl Debug for AutonomyLevel
Source§impl Default for AutonomyLevel
impl Default for AutonomyLevel
Source§fn default() -> AutonomyLevel
fn default() -> AutonomyLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutonomyLevel
impl<'de> Deserialize<'de> for AutonomyLevel
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 AutonomyLevel
impl PartialEq for AutonomyLevel
Source§impl Serialize for AutonomyLevel
impl Serialize for AutonomyLevel
Source§impl ToSchema for AutonomyLevel
impl ToSchema for AutonomyLevel
impl Copy for AutonomyLevel
impl Eq for AutonomyLevel
impl StructuralPartialEq for AutonomyLevel
Auto Trait Implementations§
impl Freeze for AutonomyLevel
impl RefUnwindSafe for AutonomyLevel
impl Send for AutonomyLevel
impl Sync for AutonomyLevel
impl Unpin for AutonomyLevel
impl UnwindSafe for AutonomyLevel
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.