1 use drstd::std as std; 2 use std::vec::Vec; 3 use std::boxed::Box; 4 5 use super::{Unit, BaseUnit}; 6 7 8 pub struct TargetUnit { 9 unit_base: BaseUnit, 10 targets: Vec<Box<dyn Unit>> 11 } 12 13 impl Unit for TargetUnit { 14 fn parse(path: &str) -> Self { 15 16 } 17 }