pub mod receive;
pub mod send;
mod types;
#[doc(inline)]
pub use types::{Element, ElementType};
macro_rules! codegen_reexport {
($($module:ident => $type:ident),*) => {
$(
mod $module;
#[doc(inline)]
pub use $module::$type;
)*
};
}
pub(crate) use codegen_reexport;