rust_widgets 0.9.7

Pure Rust cross-platform native GUI library with hardware-adaptive rendering, 60+ widgets, touch/gesture support, i18n, and SVG-pipeline-accurate output
1
2
3
4
5
6
7
8
9
10
11
//! WebView is now an alias for [`WebEngineView`].
//!
//! All functionality has been merged into [`WebEngineView`], which provides
//! a superset of signals and features including JavaScript, plugins, private
//! browsing, certificate errors, console messages, downloads, and more.

/// Re-export: `WebView` is an alias for `WebEngineView`.
///
/// This type alias preserves backward compatibility — existing code that
/// references `WebView` will transparently use `WebEngineView` instead.
pub use super::web_engine::WebEngineView as WebView;