script::dom::htmlhyperlinkelementutilsTrait HyperlinkElementTraits
Source pub(crate) trait HyperlinkElementTraits {
Show 24 methods
// Required methods
fn get_hash(&self) -> USVString;
fn set_hash(&self, value: USVString, can_gc: CanGc);
fn get_host(&self) -> USVString;
fn set_host(&self, value: USVString, can_gc: CanGc);
fn get_hostname(&self) -> USVString;
fn set_hostname(&self, value: USVString, can_gc: CanGc);
fn get_href(&self) -> USVString;
fn set_href(&self, value: USVString, can_gc: CanGc);
fn get_origin(&self) -> USVString;
fn get_password(&self) -> USVString;
fn set_password(&self, value: USVString, can_gc: CanGc);
fn get_pathname(&self) -> USVString;
fn set_pathname(&self, value: USVString, can_gc: CanGc);
fn get_port(&self) -> USVString;
fn set_port(&self, value: USVString, can_gc: CanGc);
fn get_protocol(&self) -> USVString;
fn set_protocol(&self, value: USVString, can_gc: CanGc);
fn get_search(&self) -> USVString;
fn set_search(&self, value: USVString, can_gc: CanGc);
fn get_username(&self) -> USVString;
fn set_url(&self);
fn set_username(&self, value: USVString, can_gc: CanGc);
fn update_href(&self, url: DOMString, can_gc: CanGc);
fn reinitialize_url(&self);
}
Expand description