1//! specialized struct and enum for handling branching of parent-child/first-second related two types. 2 3pub(crate) mod marker; 4 5mod r#enum; 6mod r#struct; 7 8pub use r#enum::Pipeline as PipelineE; 9pub use r#struct::Pipeline as PipelineT;