#[derive(JsonToFromZMQ)]Expand description
A macro to automatically implement the JsonSerializeDeserialize trait and related conversions for specified message types.
This macro generates implementations for the following traits:
JsonSerializeDeserialize: Allows the type to be serialized to and deserialized from JSON format.Into<zmq::Message>: Provides a method to convert the type into azmq::Message.TryFrom<zmq::Message>: Allows creating an instance of the type from azmq::Message.