relay_server/managed/
mod.rs

1//! Managed containers and utilities to ensure outcomes are correctly emitted.
2
3mod counted;
4mod envelope;
5#[expect(
6    clippy::module_inception,
7    reason = "private module, containing the Managed type, module exists to prevent clashes with the envelope module"
8)]
9mod managed;
10mod utils;
11
12pub use self::counted::*;
13pub use self::envelope::*;
14pub use self::managed::*;
15pub use self::utils::*;