boltffi_bindgen 0.24.1

Code generation library for BoltFFI - generates Swift, Kotlin, and TypeScript bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod callable;
mod enumeration;
mod module;
mod record;
mod type_shape;

pub use callable::{
    PythonCallable, PythonEnumConstructor, PythonEnumMethod, PythonFunction, PythonNativeCallable,
    PythonParameter,
};
pub use enumeration::{PythonCStyleEnum, PythonCStyleEnumVariant, PythonEnumType};
pub use module::PythonModule;
pub use record::{
    PythonRecord, PythonRecordConstructor, PythonRecordField, PythonRecordMethod, PythonRecordType,
};
pub use type_shape::{PythonSequenceType, PythonType};