[][src]Trait webkit2gtk_webextension::WebPageExt

pub trait WebPageExt: 'static {
    fn get_dom_document(&self) -> Option<DOMDocument>;
fn get_id(&self) -> u64;
fn get_uri(&self) -> Option<GString>;
fn connect_document_loaded<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_send_request<F: Fn(&Self, &URIRequest, Option<&URIResponse>) -> bool + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_dom_document(&self) -> Option<DOMDocument>

fn get_id(&self) -> u64

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

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

fn connect_send_request<F: Fn(&Self, &URIRequest, Option<&URIResponse>) -> bool + 'static>(
    &self,
    f: F
) -> SignalHandlerId

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

Loading content...

Implementors

impl<O: IsA<WebPage>> WebPageExt for O[src]

Loading content...