Skip to main content

roam_frame/
lib.rs

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