pub trait HitTestResultExt: IsA<HitTestResult> + Sealed + 'static {
    // Provided methods
    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 context_is_selection(&self) -> bool { ... }
    fn context(&self) -> u32 { ... }
    fn image_uri(&self) -> Option<GString> { ... }
    fn link_label(&self) -> Option<GString> { ... }
    fn link_title(&self) -> Option<GString> { ... }
    fn link_uri(&self) -> Option<GString> { ... }
    fn media_uri(&self) -> Option<GString> { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§