pub(crate) trait HTMLAnchorElementMethods<D: DomTypes> {
Show 38 methods // Required methods fn Target(&self) -> DOMString; fn SetTarget(&self, value: DOMString); fn Rel(&self) -> DOMString; fn SetRel(&self, value: DOMString, _can_gc: CanGc); fn RelList(&self) -> DomRoot<D::DOMTokenList>; fn Text(&self) -> DOMString; fn SetText(&self, value: DOMString, _can_gc: CanGc); fn ReferrerPolicy(&self) -> DOMString; fn SetReferrerPolicy(&self, value: DOMString); fn Coords(&self) -> DOMString; fn SetCoords(&self, value: DOMString); fn Name(&self) -> DOMString; fn SetName(&self, value: DOMString); fn Rev(&self) -> DOMString; fn SetRev(&self, value: DOMString); fn Shape(&self) -> DOMString; fn SetShape(&self, value: DOMString); fn Href(&self) -> USVString; fn SetHref(&self, value: USVString, _can_gc: CanGc); fn Origin(&self) -> USVString; fn Protocol(&self) -> USVString; fn SetProtocol(&self, value: USVString, _can_gc: CanGc); fn Username(&self) -> USVString; fn SetUsername(&self, value: USVString, _can_gc: CanGc); fn Password(&self) -> USVString; fn SetPassword(&self, value: USVString, _can_gc: CanGc); fn Host(&self) -> USVString; fn SetHost(&self, value: USVString, _can_gc: CanGc); fn Hostname(&self) -> USVString; fn SetHostname(&self, value: USVString, _can_gc: CanGc); fn Port(&self) -> USVString; fn SetPort(&self, value: USVString, _can_gc: CanGc); fn Pathname(&self) -> USVString; fn SetPathname(&self, value: USVString, _can_gc: CanGc); fn Search(&self) -> USVString; fn SetSearch(&self, value: USVString, _can_gc: CanGc); fn Hash(&self) -> USVString; fn SetHash(&self, value: USVString, _can_gc: CanGc);
}

Required Methods§

Source

fn Target(&self) -> DOMString

Source

fn SetTarget(&self, value: DOMString)

Source

fn Rel(&self) -> DOMString

Source

fn SetRel(&self, value: DOMString, _can_gc: CanGc)

Source

fn RelList(&self) -> DomRoot<D::DOMTokenList>

Source

fn Text(&self) -> DOMString

Source

fn SetText(&self, value: DOMString, _can_gc: CanGc)

Source

fn ReferrerPolicy(&self) -> DOMString

Source

fn SetReferrerPolicy(&self, value: DOMString)

Source

fn Coords(&self) -> DOMString

Source

fn SetCoords(&self, value: DOMString)

Source

fn Name(&self) -> DOMString

Source

fn SetName(&self, value: DOMString)

Source

fn Rev(&self) -> DOMString

Source

fn SetRev(&self, value: DOMString)

Source

fn Shape(&self) -> DOMString

Source

fn SetShape(&self, value: DOMString)

Source

fn Href(&self) -> USVString

Source

fn SetHref(&self, value: USVString, _can_gc: CanGc)

Source

fn Origin(&self) -> USVString

Source

fn Protocol(&self) -> USVString

Source

fn SetProtocol(&self, value: USVString, _can_gc: CanGc)

Source

fn Username(&self) -> USVString

Source

fn SetUsername(&self, value: USVString, _can_gc: CanGc)

Source

fn Password(&self) -> USVString

Source

fn SetPassword(&self, value: USVString, _can_gc: CanGc)

Source

fn Host(&self) -> USVString

Source

fn SetHost(&self, value: USVString, _can_gc: CanGc)

Source

fn Hostname(&self) -> USVString

Source

fn SetHostname(&self, value: USVString, _can_gc: CanGc)

Source

fn Port(&self) -> USVString

Source

fn SetPort(&self, value: USVString, _can_gc: CanGc)

Source

fn Pathname(&self) -> USVString

Source

fn SetPathname(&self, value: USVString, _can_gc: CanGc)

Source

fn Search(&self) -> USVString

Source

fn SetSearch(&self, value: USVString, _can_gc: CanGc)

Source

fn Hash(&self) -> USVString

Source

fn SetHash(&self, value: USVString, _can_gc: CanGc)

Implementors§