pub struct PipelineDecl {
pub name: String,
pub attrs: Vec<Attribute>,
pub seed: Option<u64>,
pub input_ty: Type,
pub output_ty: Option<Type>,
pub constraints: Vec<Constraint>,
pub steps: Vec<PipelineStep>,
pub validation: Option<Block>,
pub span: Span,
}Fields§
§name: String§attrs: Vec<Attribute>§seed: Option<u64>§input_ty: Type§output_ty: Option<Type>§constraints: Vec<Constraint>§steps: Vec<PipelineStep>§validation: Option<Block>§span: SpanTrait Implementations§
Source§impl Clone for PipelineDecl
impl Clone for PipelineDecl
Source§fn clone(&self) -> PipelineDecl
fn clone(&self) -> PipelineDecl
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 PipelineDecl
impl Debug for PipelineDecl
Source§impl PartialEq for PipelineDecl
impl PartialEq for PipelineDecl
Source§impl Serialize for PipelineDecl
impl Serialize for PipelineDecl
impl StructuralPartialEq for PipelineDecl
Auto Trait Implementations§
impl Freeze for PipelineDecl
impl RefUnwindSafe for PipelineDecl
impl Send for PipelineDecl
impl Sync for PipelineDecl
impl Unpin for PipelineDecl
impl UnsafeUnpin for PipelineDecl
impl UnwindSafe for PipelineDecl
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