Struct Execution Plan

View as Markdown

Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.

pub struct ExecutionPlan {
    pub agent_id: String,
    pub parallel_groups: Vec<ParallelGroup>,
    pub metadata_template: MetadataEnvelope,
}

Learned execution plan for an agent.

The plan captures discovered tool fan-outs and the metadata template used to expose those discoveries to later runs.

Fields

agent_id: String

Agent identifier the plan applies to.

parallel_groups: Vec<ParallelGroup>

Parallel groups learned for the agent.

metadata_template: MetadataEnvelope

Metadata template emitted alongside the plan.

Trait Implementations

impl Clone for ExecutionPlan

impl Clone for ExecutionPlan

clone

fn clone(&self) -> ExecutionPlan

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for ExecutionPlan

impl Debug for ExecutionPlan

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'de> Deserialize<'de> for ExecutionPlan

impl<'de> Deserialize<'de> for ExecutionPlan

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl Serialize for ExecutionPlan

impl Serialize for ExecutionPlan

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,