flutter_rust_bridge 2.4.0

High-level memory-safe binding generator for Flutter/Dart <-> Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "thread-pool")]
#[cfg(wasm)]
mod web;
#[cfg(feature = "thread-pool")]
#[cfg(wasm)]
pub use web::*;

#[cfg(feature = "thread-pool")]
#[cfg(not(wasm))]
mod io;
#[cfg(feature = "thread-pool")]
#[cfg(not(wasm))]
pub use io::*;

#[cfg(not(feature = "thread-pool"))]
mod stub;
#[cfg(not(feature = "thread-pool"))]
pub use stub::*;