pub trait WorkerNavigatorMethods<D>
where D: DomTypes,
{
Show 16 methods // Required methods fn Permissions(&self) -> Root<Dom<<D as DomTypes>::Permissions>>; fn HardwareConcurrency(&self) -> u64; fn Gpu(&self) -> Root<Dom<<D as DomTypes>::GPU>>; fn AppCodeName(&self) -> DOMString; fn AppName(&self) -> DOMString; fn AppVersion(&self) -> DOMString; fn Platform(&self) -> DOMString; fn Product(&self) -> DOMString; fn ProductSub(&self) -> DOMString; fn TaintEnabled(&self) -> bool; fn UserAgent(&self) -> DOMString; fn Vendor(&self) -> DOMString; fn VendorSub(&self) -> DOMString; fn Language(&self) -> DOMString; fn Languages( &self, cx: JSContext, _can_gc: CanGc, retval: MutableHandle<'_, Value>, ); fn OnLine(&self) -> bool;
}

Required Methods§

Source

fn Permissions(&self) -> Root<Dom<<D as DomTypes>::Permissions>>

Source

fn HardwareConcurrency(&self) -> u64

Source

fn Gpu(&self) -> Root<Dom<<D as DomTypes>::GPU>>

Source

fn AppCodeName(&self) -> DOMString

Source

fn AppName(&self) -> DOMString

Source

fn AppVersion(&self) -> DOMString

Source

fn Platform(&self) -> DOMString

Source

fn Product(&self) -> DOMString

Source

fn ProductSub(&self) -> DOMString

Source

fn TaintEnabled(&self) -> bool

Source

fn UserAgent(&self) -> DOMString

Source

fn Vendor(&self) -> DOMString

Source

fn VendorSub(&self) -> DOMString

Source

fn Language(&self) -> DOMString

Source

fn Languages( &self, cx: JSContext, _can_gc: CanGc, retval: MutableHandle<'_, Value>, )

Source

fn OnLine(&self) -> bool

Implementors§