wef 0.6.0

Wef is a Rust library for embedding WebView functionality using Chromium Embedded Framework (CEF3) with offscreen rendering support.
1
2
3
4
5
6
7
8
9
10
11
12
13
mod async_function_type;
mod builder;
mod dyn_wrapper;
mod error;
mod function_type;
mod into_result;
mod registry;

pub use async_function_type::AsyncFunctionType;
pub use builder::{AsyncFuncRegistryBuilder, FuncRegistryBuilder};
pub use error::CallFunctionError;
pub use function_type::FunctionType;
pub use registry::FuncRegistry;