//! An experiment for a hyper-modular trait-based architecture. //! //! Patterns defining this (or well, which I reference a lot while writing this): //! - [Command pattern using trait objects](https://rust-unofficial.github.io/patterns/patterns/behavioural/command.html) //! - [Builder pattern](https://rust-unofficial.github.io/patterns/patterns/creational/builder.html) pub mod data; pub mod element; pub mod ops; pub mod pipeline;