pub trait DOMHTMLAreaElementExt: 'static {
Show 45 methods
fn alt(&self) -> Option<GString>;
fn coords(&self) -> Option<GString>;
fn hash(&self) -> Option<GString>;
fn host(&self) -> Option<GString>;
fn hostname(&self) -> Option<GString>;
fn href(&self) -> Option<GString>;
fn is_no_href(&self) -> bool;
fn pathname(&self) -> Option<GString>;
fn port(&self) -> Option<GString>;
fn protocol(&self) -> Option<GString>;
fn search(&self) -> Option<GString>;
fn shape(&self) -> Option<GString>;
fn target(&self) -> Option<GString>;
fn set_alt(&self, value: &str);
fn set_coords(&self, value: &str);
fn set_hash(&self, value: &str);
fn set_host(&self, value: &str);
fn set_hostname(&self, value: &str);
fn set_href(&self, value: &str);
fn set_no_href(&self, value: bool);
fn set_pathname(&self, value: &str);
fn set_port(&self, value: &str);
fn set_protocol(&self, value: &str);
fn set_search(&self, value: &str);
fn set_shape(&self, value: &str);
fn set_target(&self, value: &str);
fn set_property_host(&self, host: Option<&str>);
fn set_property_hostname(&self, hostname: Option<&str>);
fn set_property_pathname(&self, pathname: Option<&str>);
fn set_property_port(&self, port: Option<&str>);
fn set_property_protocol(&self, protocol: Option<&str>);
fn set_property_search(&self, search: Option<&str>);
fn connect_alt_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_coords_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_hash_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_host_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_hostname_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_href_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_no_href_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_pathname_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_port_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_protocol_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_search_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_shape_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_target_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Expand description
Required Methods
fn hash(&self) -> Option<GString>
sourcefn is_no_href(&self) -> bool
fn is_no_href(&self) -> bool
sourcefn set_coords(&self, value: &str)
fn set_coords(&self, value: &str)
fn set_hash(&self, value: &str)
sourcefn set_hostname(&self, value: &str)
fn set_hostname(&self, value: &str)
Available on crate feature
v2_16
only.sourcefn set_no_href(&self, value: bool)
fn set_no_href(&self, value: bool)
sourcefn set_pathname(&self, value: &str)
fn set_pathname(&self, value: &str)
Available on crate feature
v2_16
only.sourcefn set_protocol(&self, value: &str)
fn set_protocol(&self, value: &str)
Available on crate feature
v2_16
only.sourcefn set_search(&self, value: &str)
fn set_search(&self, value: &str)
Available on crate feature
v2_16
only.