Files
kumomta/docs/reference/kumo/format_queue_config_toml.md
2026-06-23 10:13:11 +01:00

785 B

kumo.format_queue_config_toml

local text = kumo.format_queue_config_toml(queue_config)

{{since('dev')}}

Given a scheduled-queue configuration table (as returned by kumo.invoke_get_queue_config or constructed via kumo.make_queue_config), returns the configuration serialized as compact pretty TOML.

The typed Rust representation of the queue config is used during serialization. This preserves the distinction between array-valued and map-valued fields, which is lost when the generic kumo.serde.toml_encode_pretty_compact materializes from a Lua table.

The output round-trips back into a QueueConfig via kumo.serde.toml_parse.