node_flow/node/mod.rs
1//! This module contains the [`Node`] trait and everything related to it.
2//!
3//! For details, see the documentation of each item.
4
5mod base;
6pub use base::*;
7mod output;
8pub use output::*;
9#[cfg(feature = "boxed_node")]
10mod boxed;
11mod macros;
12#[cfg(feature = "boxed_node")]
13pub use boxed::*;