alef 0.25.13

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod free_functions;
mod impl_blocks;
mod methods;
mod params;
mod returns;
mod serde;

pub(crate) use free_functions::extract_function;
pub(crate) use impl_blocks::extract_impl_block;
pub(crate) use methods::extract_method;
pub(crate) use params::{detect_receiver, extract_params};
pub(crate) use returns::{resolve_return_type, unwrap_future_return};
pub(crate) use serde::collect_manual_serde_type_names;