1 2 3 4 5 6 7 8
use crate::module::Module; use super::analyze_deps::PluginAnalyzeDepsHookResultEntry; pub struct PluginFinalizeModuleHookParam<'a> { pub module: &'a mut Module, pub deps: &'a mut Vec<PluginAnalyzeDepsHookResultEntry>, }