pub struct Plan {
pub graph: PipelineGraph,
pub ir_json: String,
pub summary: PlanSummary,
}Expand description
A rendered, ready-to-run pipeline.
Carries both the typed graph (for client-scheduling backends like local) and the verbatim IR JSON (for forwarding backends like cloud — the server must receive exactly what the DSL emitted). Parsed once, before any backend is touched.
Fields§
§graph: PipelineGraph§ir_json: String§summary: PlanSummaryImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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