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
pub(crate) mod error;
pub(crate) mod error_listener;
pub(crate) mod executor;
#[allow(clippy::module_inception)]
pub(crate) mod handler;
pub(crate) mod implementation;

pub use error::Error as HandlerError;
pub use error_listener::ErrorListener;
pub use executor::Executor;
pub use handler::{FfiCallMode, TaskInfo};
pub use handler::{TaskContext, TaskRetFutTrait};
pub use implementation::error_listener::NoOpErrorListener;
pub use implementation::executor::SimpleExecutor;
pub use implementation::handler::SimpleHandler;