metacall_untyped_no_arg

Function metacall_untyped_no_arg 

Source
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();