Enum AutonomyLevel
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§
§impl Clone for AutonomyLevel
impl Clone for AutonomyLevel
§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 more§impl Debug for AutonomyLevel
impl Debug for AutonomyLevel
§impl Default for AutonomyLevel
impl Default for AutonomyLevel
§fn default() -> AutonomyLevel
fn default() -> AutonomyLevel
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for AutonomyLevel
impl<'de> Deserialize<'de> for AutonomyLevel
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomyLevel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AutonomyLevel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for AutonomyLevel
impl PartialEq for AutonomyLevel
§impl Serialize for AutonomyLevel
impl Serialize for AutonomyLevel
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
§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.