p2p_chat/sync/engine/mailbox/
mod.rs

1//! This module contains mailbox-related logic for the synchronization engine.
2//!
3//! It handles fetching messages, acknowledging them, and managing the reliability
4//! of mailbox interactions.
5mod ack;
6mod fetch;
7mod processing;
8mod reliability;