1 2 3 4 5 6 7 8 9 10 11 12
mod path_ext; mod vec_ext; pub mod path2; mod command_ext; pub use path_ext::*; pub use vec_ext::*; pub use command_ext::*; pub fn default<T: Default>() -> T { T::default() }