openai_agents_rust/
handoffs.rs

1/// Handoff scaffold representing delegation to another agent.
2#[derive(Debug, Clone)]
3pub struct Handoff {
4    pub name: String,
5}