Trait WebInspectorExt

Source
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

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§