macro_rules! macro_generate_from_toml {
    ($toml_path:expr) => { ... };
}
Expand description

Attempts to generate file templates from a TOML file.

§Arguments

  • $toml_path - The path to the TOML file as a string slice.

§Returns

Returns a Result<(), String> indicating the success or failure of file generation. If successful, returns Ok(()). If an error occurs, returns Err with an error message.