pub struct CrewMcpOutput {
pub result: String,
pub task_results: Vec<TaskResult>,
pub duration_ms: u64,
pub agents_used: Vec<String>,
}Expand description
Output structure for crew responses
Fields§
§result: StringFinal aggregated result
task_results: Vec<TaskResult>Per-task outcomes
duration_ms: u64Total execution duration in milliseconds
agents_used: Vec<String>Names of agents that participated
Trait Implementations§
Source§impl Clone for CrewMcpOutput
impl Clone for CrewMcpOutput
Source§fn clone(&self) -> CrewMcpOutput
fn clone(&self) -> CrewMcpOutput
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 moreSource§impl Debug for CrewMcpOutput
impl Debug for CrewMcpOutput
Source§impl<'de> Deserialize<'de> for CrewMcpOutput
impl<'de> Deserialize<'de> for CrewMcpOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CrewMcpOutput
impl RefUnwindSafe for CrewMcpOutput
impl Send for CrewMcpOutput
impl Sync for CrewMcpOutput
impl Unpin for CrewMcpOutput
impl UnsafeUnpin for CrewMcpOutput
impl UnwindSafe for CrewMcpOutput
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