Trait WebViewExtManual

Source
pub trait WebViewExtManual {
    // Required method
    fn new_with_context_and_user_content_manager(
        context: &WebContext,
        user_content_manager: &UserContentManager,
    ) -> Self;
}

Required Methods§

Source

fn new_with_context_and_user_content_manager( context: &WebContext, user_content_manager: &UserContentManager, ) -> Self

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.

Implementors§

Source§

impl<O> WebViewExtManual for O
where O: IsA<Widget> + IsA<WebView>,