pub trait DOMHTMLBaseElementExt: 'static {
fn href(&self) -> Option<GString>;
fn target(&self) -> Option<GString>;
fn set_href(&self, value: &str);
fn set_target(&self, value: &str);
fn connect_href_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_target_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}