oxidd_manager_pointer/
lib.rs

1//! Pointer-based manager implementation
2
3//#![warn(missing_docs)]
4#![deny(unsafe_op_in_unsafe_fn)]
5#![allow(clippy::type_complexity)]
6// We use const assertions for checking configurations and need to make sure
7// that they are evaluated
8#![allow(clippy::let_unit_value)]
9
10pub mod manager;
11pub mod node;
12pub mod terminal_manager;
13pub mod workers;
14
15mod util;