Trait webkit2gtk_webextension::HitTestResultExt[][src]

pub trait HitTestResultExt {
    fn context_is_editable(&self) -> bool;
fn context_is_image(&self) -> bool;
fn context_is_link(&self) -> bool;
fn context_is_media(&self) -> bool;
fn context_is_scrollbar(&self) -> bool;
fn get_context(&self) -> u32;
fn get_image_uri(&self) -> Option<String>;
fn get_link_label(&self) -> Option<String>;
fn get_link_title(&self) -> Option<String>;
fn get_link_uri(&self) -> Option<String>;
fn get_media_uri(&self) -> Option<String>;
fn connect_property_context_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_image_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_link_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_link_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_link_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_media_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors