//! [`PostgresInboxStore`]: construction, the [`reliar_inbox::InboxStore`] implementation, and
//! [`reliar_inbox::InboxDeadLetters`], split by concern (inbox contract §6), mirroring
//! `src/outbox/`'s shape — `inbox_store` (the type, construction, the `InboxStore` impl itself,
//! delegating each method's body to its concern module), `error` ([`PostgresInboxError`]),
//! `claim` (`claim`'s body), `outcomes` (`complete`/`fail`'s bodies), `purge` (`purge`/`find`'s
//! bodies, plus the shared row-to-record rehydration `dead_letters::list_dead` reuses),
//! `dead_letters` (`InboxDeadLetters`'s three statements, ADR 0042 A.2.5).
pub use PostgresInboxError;
pub use PostgresInboxStore;