Function mz_walkabout::parse::parse_mod
source ยท pub fn parse_mod<P>(path: P) -> Result<Vec<DeriveInput>>
Expand description
Parses the module at path
and any contained submodules.
Returns DeriveInput
s representing all struct and enum items in the
module. This is exactly what a custom derive procedural macro would see,
except that we can present information for all types simultaneously.