pub enum RoutingDecision {
SingleAgent {
agent_index: usize,
reason: &'static str,
},
Orchestrate {
reason: &'static str,
},
}Expand description
Routing outcome.
Variants§
Trait Implementations§
Source§impl Clone for RoutingDecision
impl Clone for RoutingDecision
Source§fn clone(&self) -> RoutingDecision
fn clone(&self) -> RoutingDecision
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 RoutingDecision
impl Debug for RoutingDecision
Source§impl PartialEq for RoutingDecision
impl PartialEq for RoutingDecision
Source§fn eq(&self, other: &RoutingDecision) -> bool
fn eq(&self, other: &RoutingDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RoutingDecision
Auto Trait Implementations§
impl Freeze for RoutingDecision
impl RefUnwindSafe for RoutingDecision
impl Send for RoutingDecision
impl Sync for RoutingDecision
impl Unpin for RoutingDecision
impl UnsafeUnpin for RoutingDecision
impl UnwindSafe for RoutingDecision
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