pub struct PipelinePlanV2 {
pub name: String,
pub target: ExecutionTargetV1,
pub stages: Vec<PlanStage>,
pub boundaries: Vec<PlanBoundary>,
pub source: PipelinePlanSourceV2,
}Expand description
Full-parity pipeline authoring document.
This is the supported replacement for the earlier narrower graph-shaped document. It keeps shared catalog metadata at the top level while allowing target-specific payloads to carry the semantics that cannot be represented safely in one fake model-neutral graph.
Fields§
§name: StringPlan name.
target: ExecutionTargetV1Explicit author-selected target.
stages: Vec<PlanStage>Shared stage catalog.
boundaries: Vec<PlanBoundary>Shared boundary catalog.
source: PipelinePlanSourceV2Target-specific source payload.
Trait Implementations§
Source§impl Clone for PipelinePlanV2
impl Clone for PipelinePlanV2
Source§fn clone(&self) -> PipelinePlanV2
fn clone(&self) -> PipelinePlanV2
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 PipelinePlanV2
impl Debug for PipelinePlanV2
Source§impl<'de> Deserialize<'de> for PipelinePlanV2
impl<'de> Deserialize<'de> for PipelinePlanV2
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
Source§impl PartialEq for PipelinePlanV2
impl PartialEq for PipelinePlanV2
Source§impl Serialize for PipelinePlanV2
impl Serialize for PipelinePlanV2
impl Eq for PipelinePlanV2
impl StructuralPartialEq for PipelinePlanV2
Auto Trait Implementations§
impl Freeze for PipelinePlanV2
impl RefUnwindSafe for PipelinePlanV2
impl Send for PipelinePlanV2
impl Sync for PipelinePlanV2
impl Unpin for PipelinePlanV2
impl UnwindSafe for PipelinePlanV2
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