1use crate::ir::DbcFile; 2 3pub trait TransformationNode { 4 fn transform(&self, file: &mut DbcFile); 5}