pub fn metacall_untyped_no_arg(
func: impl ToString,
) -> Result<Box<dyn MetaCallValue>, MetaCallError>Expand description
Calls a function same as metacall_untyped without passing any arguments. For example: …
let greet = metacall::metacall_untyped_no_arg("sum").unwrap();