pub type ZmqMessage = Vec<Vec<u8>>;Expand description
A multipart ZeroMQ message represented as a vector of byte frames.
ZeroMQ’s multipart messages are atomic - all frames are sent/received together. This is essential for protocols like ROUTER/DEALER where the first frame(s) contain routing information that must stay attached to the payload.
Aliased Type§
pub struct ZmqMessage { /* private fields */ }