started work on typed pipelines
This commit is contained in:
parent
b6b8c5085a
commit
414b6c927d
5 changed files with 109 additions and 12 deletions
|
@ -13,8 +13,8 @@ mod error;
|
|||
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub struct PipelineElement {
|
||||
kind: PipelineElementKind,
|
||||
span: Span,
|
||||
pub kind: PipelineElementKind,
|
||||
pub span: Span,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
|
@ -25,8 +25,8 @@ pub enum PipelineElementKind {
|
|||
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub struct CommandPart {
|
||||
kind: CommandPartKind,
|
||||
span: Span,
|
||||
pub kind: CommandPartKind,
|
||||
pub span: Span,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue