pub trait WebViewExtUnix: Sized {
// Required methods
fn new_gtk<W>(widget: &W) -> Result<Self>
where W: IsA<Container>;
fn webview(&self) -> WebView;
}Expand description
Additional methods on WebView that are specific to Linux.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.