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
14
15
/// Error type.
#[derive(thiserror::Error, Debug, Clone)]
pub enum Error {
    /// Failed to load the CEF framework.
    #[cfg(target_os = "macos")]
    #[error("failed to load CEF library")]
    LoadLibrary,
    /// Failed to create the sandbox context.
    #[cfg(target_os = "macos")]
    #[error("failed to create the sandbox context")]
    SandboxContextCreate,
    /// Failed to initialize the CEF browser process.
    #[error("failed to initialize the CEF browser process")]
    InitializeBrowserProcess,
}