1 2 3 4 5 6
use super::configuration::Template; use super::parser::Arguments; pub type PageDefinition = (Vec<String>, Box<dyn Fn(FunctionArguments)>); pub type FunctionArguments = (Arguments, Vec<Template>);