pub enum AgentActionKind {
Respond,
AskClarification,
CallTool,
Retrieve,
Plan,
Delegate,
Stop,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AgentActionKind
impl Clone for AgentActionKind
Source§fn clone(&self) -> AgentActionKind
fn clone(&self) -> AgentActionKind
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 AgentActionKind
impl Debug for AgentActionKind
Source§impl Display for AgentActionKind
impl Display for AgentActionKind
Source§impl FromStr for AgentActionKind
impl FromStr for AgentActionKind
Source§impl Hash for AgentActionKind
impl Hash for AgentActionKind
Source§impl Ord for AgentActionKind
impl Ord for AgentActionKind
Source§fn cmp(&self, other: &AgentActionKind) -> Ordering
fn cmp(&self, other: &AgentActionKind) -> 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 AgentActionKind
impl PartialEq for AgentActionKind
Source§fn eq(&self, other: &AgentActionKind) -> bool
fn eq(&self, other: &AgentActionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AgentActionKind
impl PartialOrd for AgentActionKind
impl Copy for AgentActionKind
impl Eq for AgentActionKind
impl StructuralPartialEq for AgentActionKind
Auto Trait Implementations§
impl Freeze for AgentActionKind
impl RefUnwindSafe for AgentActionKind
impl Send for AgentActionKind
impl Sync for AgentActionKind
impl Unpin for AgentActionKind
impl UnsafeUnpin for AgentActionKind
impl UnwindSafe for AgentActionKind
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