Expand description
§Publish Function Module
Serialises a slice of the message’s data context to a JSON or XML string
and stores it back under data.{target}. JSON uses OwnedDataValue’s
native to_json_string; pretty-printed JSON and XML both bridge through
serde_json::Value since neither is on the hot path.
Structs§
- Publish
Config - Configuration for publish functions.
Functions§
- execute_
publish_ json - Execute
publish_json: serialisedata.{source}to a JSON string and store atdata.{target}. - execute_
publish_ xml - Execute
publish_xml: serialisedata.{source}to an XML string and store atdata.{target}. Bridges toserde_json::Valuefor the existing recursive XML walker — XML is the slow path, no perf concern.