brk_bindgen 0.2.5

A trait-based generator of client bindings for multiple languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared code generation logic.
//!
//! This module contains generation functions that are parameterized by
//! the `LanguageSyntax` trait, allowing them to work across all supported
//! language backends.

mod constants;
mod fields;
mod tree;

pub use constants::*;
pub use fields::*;
pub use tree::*;