1 use crate::cdsl::settings::SettingGroup; 2 3 pub(crate) struct TargetIsa { 4 pub name: &'static str, 5 pub settings: SettingGroup, 6 } 7 8 impl TargetIsa { new(name: &'static str, settings: SettingGroup) -> Self9 pub fn new(name: &'static str, settings: SettingGroup) -> Self { 10 Self { name, settings } 11 } 12 } 13