1 2 3 4 5 6 7 8 9 10
use crate::engine::exec::VarId; #[derive(Debug, Clone)] pub(crate) struct Output { /// Where to store the output pub var: VarId, /// Number of times the variable will be used pub num_uses: usize, }