Deborah.Sarah.ControllerCommon

Deborah.Sarah.ControllerCommon.save_toml_fileMethod
save_toml_file(
    toml_dict::Dict, 
    path::String
) -> Nothing

Saves a TOML dictionary to a specified file path.

Arguments

  • toml_dict::Dict : Dictionary containing configuration data to be saved.
  • path::String : Destination file path for the TOML output.

Behavior

  • Opens the file at path in write mode.
  • Writes the contents of toml_dict in TOML format.

Returns

  • Nothing : Side-effect function.
source