pub struct WorkerScope<W: Worker> { /* private fields */ }
Expand description

This struct holds a reference to a component and to a global scheduler.

Implementations§

source§

impl<W> WorkerScope<W>
where W: Worker + 'static,

source

pub fn respond(&self, id: HandlerId, output: W::Output)

Send response to a worker bridge.

source

pub fn send_message<T>(&self, msg: T)
where T: Into<W::Message>,

Send a message to the worker

source

pub fn callback<F, IN, M>(&self, function: F) -> Rc<dyn Fn(IN)>
where M: Into<W::Message>, F: Fn(IN) -> M + 'static,

Create a callback which will send a message to the worker when invoked.

source

pub fn callback_future<FN, FU, IN, M>(&self, function: FN) -> Rc<dyn Fn(IN)>
where M: Into<W::Message>, FU: Future<Output = M> + 'static, FN: Fn(IN) -> FU + 'static,

Available on crate feature futures only.

This method creates a callback which returns a Future which returns a message to be sent back to the worker

Panics

If the future panics, then the promise will not resolve, and will leak.

source

pub fn send_future<F, M>(&self, future: F)
where M: Into<W::Message>, F: Future<Output = M> + 'static,

Available on crate feature futures only.

This method processes a Future that returns a message and sends it back to the worker.

Panics

If the future panics, then the promise will not resolve, and will leak.

Trait Implementations§

source§

impl<W: Worker> Clone for WorkerScope<W>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<W: Worker> Debug for WorkerScope<W>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<W> !RefUnwindSafe for WorkerScope<W>

§

impl<W> !Send for WorkerScope<W>

§

impl<W> !Sync for WorkerScope<W>

§

impl<W> Unpin for WorkerScope<W>

§

impl<W> !UnwindSafe for WorkerScope<W>

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.