pub fn compile_transforms(
specs: &[TransformSpec],
) -> CliResult<Vec<TransformStage>>Expand description
Compile a list of TransformSpecs into TransformStages in the
declared order. Most built-ins compile to a TransformStage::Map;
richer stages (e.g. filter, future fan-outs) compile to other
variants. Unknown or malformed entries surface as a CliError.