node_flow/context/mod.rs
1//! This module contains basic traits that should be implemented for node context.
2//!
3//! Traits in this module can be used by nodes to restrict the context type and ensure that it can perform certain functions.
4//! It also contains definitions and implementations of different types of storages.
5//!
6//! For details, see the documentation of each trait.
7
8mod traits;
9pub use traits::*;
10pub mod storage;