| 162 | /// A value and a series of functions that are to be applied to that value one after another. |
| 163 | #[derive(Debug, PartialEq, Clone, Serialize, Deserialize, JsonSchema)] |
| 164 | pub struct Pipeline { |
| 165 | pub exprs: Vec<Expr>, |
| 166 | } |
| 167 | |
| 168 | pub type Range = generic::Range<Box<Expr>>; |
| 169 | pub type InterpolateItem = generic::InterpolateItem<Expr>; |
no outgoing calls