pub enum RoutingResult {
LlmResponse(String),
AgentSpawned(ProcessId),
Error(String),
}Expand description
Result of executing a routing decision
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RoutingResult
impl RefUnwindSafe for RoutingResult
impl Send for RoutingResult
impl Sync for RoutingResult
impl Unpin for RoutingResult
impl UnsafeUnpin for RoutingResult
impl UnwindSafe for RoutingResult
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