logo
1
2
3
4
5
6
7
8
//! This module provides example APIs to illustrate how to create API wrappers,
//! see the internals guide for more information.

/// This module shows how to wrap the "safe" functions generated by the
/// `#[ark_api_macros::ark_bindgen]` macro
pub mod automatic;
/// This module shows how to wrap FFI functions manually
pub mod manual;