pub trait WebInspectorExt: IsA<WebInspector> + Sealed + 'static {
Show 17 methods // Provided methods fn attach(&self) { ... } fn close(&self) { ... } fn detach(&self) { ... } fn attached_height(&self) -> u32 { ... } fn can_attach(&self) -> bool { ... } fn inspected_uri(&self) -> Option<GString> { ... } fn web_view(&self) -> Option<WebViewBase> { ... } fn is_attached(&self) -> bool { ... } fn show(&self) { ... } fn connect_attach<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_bring_to_front<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_closed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn connect_detach<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_open_window<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_attached_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_can_attach_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_inspected_uri_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn attach(&self)

source

fn close(&self)

source

fn detach(&self)

source

fn attached_height(&self) -> u32

source

fn can_attach(&self) -> bool

Available on crate feature v2_8 only.
source

fn inspected_uri(&self) -> Option<GString>

source

fn web_view(&self) -> Option<WebViewBase>

source

fn is_attached(&self) -> bool

source

fn show(&self)

source

fn connect_attach<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_bring_to_front<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_closed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_detach<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_open_window<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_attached_height_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_can_attach_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Available on crate feature v2_8 only.
source

fn connect_inspected_uri_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§