Skip to main content

bb_ops/syscalls/structural/
mod.rs

1//! Structural syscalls - `PassThrough`, `Tee`, `Constant`. These
2//! components self-register via `inventory::submit!`; the module
3//! tree just declares each sub-module so the linker pulls them in.
4
5pub mod constant;
6pub mod pass_through;
7pub mod tee;