pub(crate) trait WorkerLocationMethods<D: DomTypes> {
    // Required methods
    fn Href(&self) -> USVString;
    fn Origin(&self) -> USVString;
    fn Protocol(&self) -> USVString;
    fn Host(&self) -> USVString;
    fn Hostname(&self) -> USVString;
    fn Port(&self) -> USVString;
    fn Pathname(&self) -> USVString;
    fn Search(&self) -> USVString;
    fn Hash(&self) -> USVString;
}

Required Methods§

Source

fn Href(&self) -> USVString

Source

fn Origin(&self) -> USVString

Source

fn Protocol(&self) -> USVString

Source

fn Host(&self) -> USVString

Source

fn Hostname(&self) -> USVString

Source

fn Port(&self) -> USVString

Source

fn Pathname(&self) -> USVString

Source

fn Search(&self) -> USVString

Source

fn Hash(&self) -> USVString

Implementors§