sz_rust_sdk/ffi/
mod.rs

1//! FFI bindings to the native Senzing library (Internal)
2//!
3//! This module contains the low-level FFI declarations for interfacing
4//! with the native Senzing C library. This module is internal to the SDK
5//! and not part of the public API.
6
7#[allow(unused_imports, dead_code)]
8pub(crate) mod bindings;
9#[allow(unused_imports, dead_code)]
10pub(crate) mod helpers;
11
12// Re-export for internal crate use only
13#[allow(unused_imports)]
14pub(crate) use bindings::*;
15#[allow(unused_imports)]
16pub(crate) use helpers::*;