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