Struct script::dom::workerglobalscope::WorkerGlobalScope

source ·
#[repr(C)]
pub struct WorkerGlobalScope {
Show 13 fields globalscope: GlobalScope, worker_name: DOMString, worker_type: WorkerType, worker_id: WorkerId, worker_url: DomRefCell<ServoUrl>, closing: Arc<AtomicBool>, runtime: DomRefCell<Option<Runtime>>, location: MutNullableDom<WorkerLocation>, navigator: MutNullableDom<WorkerNavigator>, _devtools_sender: Option<IpcSender<DevtoolScriptControlMsg>>, devtools_receiver: Option<Receiver<DevtoolScriptControlMsg>>, navigation_start: CrossProcessInstant, performance: MutNullableDom<Performance>,
}

Fields§

§globalscope: GlobalScope§worker_name: DOMString§worker_type: WorkerType§worker_id: WorkerId§worker_url: DomRefCell<ServoUrl>§closing: Arc<AtomicBool>§runtime: DomRefCell<Option<Runtime>>§location: MutNullableDom<WorkerLocation>§navigator: MutNullableDom<WorkerNavigator>§_devtools_sender: Option<IpcSender<DevtoolScriptControlMsg>>

A Sender for sending messages to devtools. This is unused but is stored here to keep the channel alive.

§devtools_receiver: Option<Receiver<DevtoolScriptControlMsg>>

A Receiver for receiving messages from devtools.

§navigation_start: CrossProcessInstant§performance: MutNullableDom<Performance>

Implementations§

source§

impl WorkerGlobalScope

source

pub fn new_inherited( init: WorkerGlobalScopeInit, worker_name: DOMString, worker_type: WorkerType, worker_url: ServoUrl, runtime: Runtime, devtools_receiver: Receiver<DevtoolScriptControlMsg>, closing: Arc<AtomicBool>, gpu_id_hub: Arc<IdentityHub>, ) -> Self

source

pub fn clear_js_runtime(&self)

Clear various items when the worker event-loop shuts-down.

source

pub fn runtime_handle(&self) -> ParentRuntime

source

pub fn devtools_receiver(&self) -> Option<&Receiver<DevtoolScriptControlMsg>>

source

pub fn get_cx(&self) -> JSContext

source

pub fn is_closing(&self) -> bool

source

pub fn get_url(&self) -> Ref<'_, ServoUrl>

source

pub fn set_url(&self, url: ServoUrl)

source

pub fn get_worker_id(&self) -> WorkerId

source

pub fn task_canceller(&self) -> TaskCanceller

source

pub fn pipeline_id(&self) -> PipelineId

source§

impl WorkerGlobalScope

source

pub fn execute_script(&self, source: DOMString, can_gc: CanGc)

source

pub fn script_chan(&self) -> Box<dyn ScriptChan + Send>

source

pub fn dom_manipulation_task_source(&self) -> DOMManipulationTaskSource

source

pub fn file_reading_task_source(&self) -> FileReadingTaskSource

source

pub fn networking_task_source(&self) -> NetworkingTaskSource

source

pub fn performance_timeline_task_source(&self) -> PerformanceTimelineTaskSource

source

pub fn port_message_queue(&self) -> PortMessageQueue

source

pub fn timer_task_source(&self) -> TimerTaskSource

source

pub fn remote_event_task_source(&self) -> RemoteEventTaskSource

source

pub fn websocket_task_source(&self) -> WebsocketTaskSource

source

pub fn new_script_pair( &self, ) -> (Box<dyn ScriptChan + Send>, Box<dyn ScriptPort + Send>)

source

pub fn process_event(&self, msg: CommonScriptMsg) -> bool

Process a single event as if it were the next event in the queue for this worker event-loop. Returns a boolean indicating whether further events should be processed.

source

pub fn close(&self)

Trait Implementations§

source§

impl Castable for WorkerGlobalScope

source§

fn is<T>(&self) -> bool
where T: DerivedFrom<Self>,

Check whether a DOM object implements one of its deriving interfaces.
source§

fn upcast<T>(&self) -> &T
where T: Castable, Self: DerivedFrom<T>,

Cast a DOM object upwards to one of the interfaces it derives from.
source§

fn downcast<T>(&self) -> Option<&T>
where T: DerivedFrom<Self>,

Cast a DOM object downwards to one of the interfaces it might implement.
source§

impl DomObject for WorkerGlobalScope

source§

fn reflector(&self) -> &Reflector

Returns the receiver’s reflector.
source§

fn global(&self) -> Root<Dom<GlobalScope>>
where Self: Sized,

Returns the global scope of the realm that the DomObject was created in.
source§

impl HasParent for WorkerGlobalScope

source§

fn as_parent(&self) -> &GlobalScope

This is used in a type assertion to ensure that the source and webidls agree as to what the parent type is

§

type Parent = GlobalScope

source§

impl IDLInterface for WorkerGlobalScope

source§

fn derives(class: &'static DOMClass) -> bool

Returns whether the given DOM class derives that interface.
source§

impl MallocSizeOf for WorkerGlobalScope

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl MutDomObject for WorkerGlobalScope

source§

unsafe fn init_reflector(&self, obj: *mut JSObject)

Initializes the Reflector Read more
source§

impl PartialEq for WorkerGlobalScope

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToJSValConvertible for WorkerGlobalScope

source§

unsafe fn to_jsval(&self, cx: *mut JSContext, rval: MutableHandleValue<'_>)

Convert self to a JSVal. JSAPI failure causes a panic.
source§

impl Traceable for WorkerGlobalScope

source§

unsafe fn trace(&self, tracer: *mut JSTracer)

Trace self.
source§

impl WorkerGlobalScopeMethods for WorkerGlobalScope

source§

fn StructuredClone( &self, cx: JSContext, value: HandleValue<'_>, options: RootedTraceableBox<StructuredSerializeOptions>, ) -> Result<JSVal, Error>

source§

fn Self_(&self) -> Root<Dom<WorkerGlobalScope>>

source§

fn Location(&self) -> Root<Dom<WorkerLocation>>

source§

fn GetOnerror(&self) -> Option<Rc<OnErrorEventHandlerNonNull>>

source§

fn SetOnerror(&self, listener: Option<Rc<OnErrorEventHandlerNonNull>>)

source§

fn ImportScripts( &self, url_strings: Vec<DOMString>, can_gc: CanGc, ) -> Result<(), Error>

source§

fn Navigator(&self) -> Root<Dom<WorkerNavigator>>

source§

fn Crypto(&self) -> Root<Dom<Crypto>>

source§

fn Btoa(&self, btoa: DOMString) -> Result<DOMString, Error>

source§

fn Atob(&self, atob: DOMString) -> Result<DOMString, Error>

source§

fn SetTimeout( &self, _cx: JSContext, callback: StringOrFunction, timeout: i32, args: Vec<HandleValue<'_>>, ) -> i32

source§

fn ClearTimeout(&self, handle: i32)

source§

fn SetInterval( &self, _cx: JSContext, callback: StringOrFunction, timeout: i32, args: Vec<HandleValue<'_>>, ) -> i32

source§

fn ClearInterval(&self, handle: i32)

source§

fn QueueMicrotask(&self, callback: Rc<VoidFunction>)

source§

fn CreateImageBitmap( &self, image: ImageBitmapSource, options: &ImageBitmapOptions, can_gc: CanGc, ) -> Rc<Promise>

source§

fn Fetch( &self, input: RequestOrUSVString, init: RootedTraceableBox<RequestInit>, comp: InRealm<'_>, can_gc: CanGc, ) -> Rc<Promise>

source§

fn Performance(&self) -> Root<Dom<Performance>>

source§

fn Origin(&self) -> USVString

source§

fn IsSecureContext(&self) -> bool

source§

impl DerivedFrom<EventTarget> for WorkerGlobalScope

source§

impl DerivedFrom<GlobalScope> for WorkerGlobalScope

source§

impl DerivedFrom<WorkerGlobalScope> for DedicatedWorkerGlobalScope

source§

impl DerivedFrom<WorkerGlobalScope> for ServiceWorkerGlobalScope

source§

impl DerivedFrom<WorkerGlobalScope> for WorkerGlobalScope

source§

impl Eq for WorkerGlobalScope

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast<T> for T

source§

fn downcast(&self) -> &T

source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> MaybeBoxed<Box<T>> for T

source§

fn maybe_boxed(self) -> Box<T>

Convert
source§

impl<T> MaybeBoxed<T> for T

source§

fn maybe_boxed(self) -> T

Convert
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T