tesseract_swift_utils/
lib.rs

1#![feature(async_closure)]
2
3pub mod array;
4pub mod data;
5pub mod error;
6pub mod future;
7pub mod future_impls;
8pub mod int128;
9pub mod option;
10pub mod panic;
11pub mod ptr;
12pub mod response;
13pub mod result;
14pub mod string;
15pub mod traits;
16pub mod map;
17
18#[cfg(feature = "bigint")]
19pub mod bigint;
20
21#[repr(C)]
22#[derive(Debug, Clone, Copy, Default)]
23pub struct Nothing(bool);
24
25pub type Void = std::ffi::c_void;