1 2 3 4 5 6 7 8 9 10 11 12
#![deny(unsafe_code)] //! Transport-agnostic frame representation. //! //! Canonical definitions live in `docs/content/spec/_index.md` and //! `docs/content/shm-spec/_index.md`. mod frame; mod owned_message; pub use frame::{Frame, INLINE_PAYLOAD_LEN, INLINE_PAYLOAD_SLOT, MsgDesc, Payload}; pub use owned_message::OwnedMessage;