flutter_rust_bridge 2.12.0

Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "rust-async")]
#[cfg(not(target_family = "wasm"))]
mod io;
#[cfg(feature = "rust-async")]
#[cfg(not(target_family = "wasm"))]
pub use io::*;

#[cfg(feature = "rust-async")]
#[cfg(target_family = "wasm")]
mod web;
#[cfg(feature = "rust-async")]
#[cfg(target_family = "wasm")]
pub use web::*;

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