fcplug-build 0.4.5

Foreign-Clang-Plugin solution, such as solving rust and go two-way calls
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::generator::{Generator, MidOutput};

mod gen_go_no_codec;
mod gen_rust_no_codec;

impl Generator {
    pub(crate) fn _gen_code(self) -> MidOutput {
        MidOutput {
            rust_clib_includes: "".to_string(),
            mod_requires: vec![],
            imports: vec![],
        }
    }
}