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
use std::path::PathBuf;

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PythonOutputFile {
    pub relative_path: PathBuf,
    pub contents: String,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PythonPackageSources {
    pub files: Vec<PythonOutputFile>,
}