//! Reliability policy for application messages sent over engine networking.
//!
//! Implement [`Replicable`] on payloads submitted to network sessions.
//! [`Importance::Essential`] retains retry behavior for state that must arrive;
//! use [`Importance::Optional`] for replaceable cosmetic or high-frequency data.
/// The [`Replicable`] trait supplies payload access and delivery importance to
/// network sessions.
/// The [`Importance`] enum selects whether delivery should be retried.