//! Message-related types (`Msg`, `MsgFlags`, `Metadata`, `Blob`).
pub use Blob;
pub use MsgFlags;
pub use Metadata;
pub use Msg;
use SmallVec;
/// A stack-allocated batch of message frames for a single logical ZMQ message.
/// 99% of ZMQ messages fit within 4 frames (Identity, Delimiter, Payload, …).
pub type FrameBatch = ;