acme_engine/pipes/router.rs
1/*
2 appellation: pipes <module>
3 authors: @FL03
4*/
5
6#[derive(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
7#[cfg_attr(
8 feature = "serde",
9 derive(serde::Serialize, serde::Deserialize),
10 serde(rename_all = "snake_case")
11)]
12#[repr(C)]
13pub struct PipeRouter {}
14
15impl PipeRouter {
16 /// create a new instance of the [`PipeRouter`].
17 pub const fn new() -> Self {
18 Self {}
19 }
20}