[−][src]Struct web_sys::Worker
The Worker
class.
This API requires the following crate features to be activated: Worker
Implementations
impl Worker
[src][−]
pub fn onmessage(&self) -> Option<Function>
[src][−]
Getter for the onmessage
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn set_onmessage(&self, value: Option<&Function>)
[src][−]
Setter for the onmessage
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn onmessageerror(&self) -> Option<Function>
[src][−]
Getter for the onmessageerror
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn set_onmessageerror(&self, value: Option<&Function>)
[src][−]
Setter for the onmessageerror
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn onerror(&self) -> Option<Function>
[src][−]
Getter for the onerror
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn set_onerror(&self, value: Option<&Function>)
[src][−]
Setter for the onerror
field of this object.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn new(script_url: &str) -> Result<Worker, JsValue>
[src][−]
The new Worker(..)
constructor, creating a new instance of Worker
.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn post_message(&self, message: &JsValue) -> Result<(), JsValue>
[src][−]
The postMessage()
method.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn post_message_with_transfer(
&self,
message: &JsValue,
transfer: &JsValue
) -> Result<(), JsValue>
[src][−]
&self,
message: &JsValue,
transfer: &JsValue
) -> Result<(), JsValue>
The postMessage()
method.
This API requires the following crate features to be activated: Worker
impl Worker
[src][−]
pub fn terminate(&self)
[src][−]
The terminate()
method.
This API requires the following crate features to be activated: Worker
Methods from Deref<Target = EventTarget>
pub fn add_event_listener_with_callback(
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
[src][−]
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
The addEventListener()
method.
This API requires the following crate features to be activated: EventTarget
pub fn add_event_listener_with_callback_and_bool(
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
[src][−]
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
The addEventListener()
method.
This API requires the following crate features to be activated: EventTarget
pub fn add_event_listener_with_callback_and_bool_and_wants_untrusted(
&self,
type_: &str,
listener: &Function,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
[src][−]
&self,
type_: &str,
listener: &Function,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
The addEventListener()
method.
This API requires the following crate features to be activated: EventTarget
pub fn dispatch_event(&self, event: &Event) -> Result<bool, JsValue>
[src][−]
The dispatchEvent()
method.
This API requires the following crate features to be activated: Event
, EventTarget
pub fn remove_event_listener_with_callback(
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
[src][−]
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
The removeEventListener()
method.
This API requires the following crate features to be activated: EventTarget
pub fn remove_event_listener_with_callback_and_bool(
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
[src][−]
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
The removeEventListener()
method.
This API requires the following crate features to be activated: EventTarget
Trait Implementations
impl AsRef<EventTarget> for Worker
[src][+]
impl AsRef<JsValue> for Worker
[src][+]
impl AsRef<Object> for Worker
[src][+]
impl AsRef<Worker> for Worker
[src][+]
impl Clone for Worker
[src][+]
impl Debug for Worker
[src][+]
impl Deref for Worker
[src][+]
impl Eq for Worker
[src]
impl From<JsValue> for Worker
[src][+]
impl From<Worker> for JsValue
[src][+]
impl From<Worker> for EventTarget
[src][+]
impl From<Worker> for Object
[src][+]
impl FromWasmAbi for Worker
[src][+]
impl IntoWasmAbi for Worker
[src][+]
impl<'a> IntoWasmAbi for &'a Worker
[src][+]
impl JsCast for Worker
[src][+]
impl OptionFromWasmAbi for Worker
[src][+]
impl OptionIntoWasmAbi for Worker
[src][+]
impl<'a> OptionIntoWasmAbi for &'a Worker
[src][+]
impl PartialEq<Worker> for Worker
[src][+]
impl RefFromWasmAbi for Worker
[src][+]
impl StructuralEq for Worker
[src]
impl StructuralPartialEq for Worker
[src]
impl WasmDescribe for Worker
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Worker
impl !Send for Worker
impl !Sync for Worker
impl Unpin for Worker
impl UnwindSafe for Worker
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src][+]
T: IntoWasmAbi,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,