Struct gloo::worker::WorkerSpawner

source ·
pub struct WorkerSpawner<W, CODEC = Bincode>where
    W: Worker,
    CODEC: Codec,{ /* private fields */ }
Available on crate feature worker only.
Expand description

A spawner to create workers.

Implementations§

source§

impl<W, CODEC> WorkerSpawner<W, CODEC>where W: Worker + 'static, CODEC: Codec,

source

pub const fn new() -> WorkerSpawner<W, CODEC>

Creates a WorkerSpawner.

source

pub fn encoding<C>(&mut self) -> WorkerSpawner<W, C>where C: Codec,

Sets a new message encoding.

source

pub fn callback<F>(&mut self, cb: F) -> &mut WorkerSpawner<W, CODEC>where F: 'static + Fn(<W as Worker>::Output),

Sets a callback.

source

pub fn spawn(&self, path: &str) -> WorkerBridge<W>where <W as Worker>::Input: Serialize + for<'de> Deserialize<'de>, <W as Worker>::Output: Serialize + for<'de> Deserialize<'de>,

Spawns a Worker.

source

pub fn spawn_with_loader(&self, loader_path: &str) -> WorkerBridge<W>where <W as Worker>::Input: Serialize + for<'de> Deserialize<'de>, <W as Worker>::Output: Serialize + for<'de> Deserialize<'de>,

Spawns a Worker with a loader shim script.

Trait Implementations§

source§

impl<W, CODEC> Clone for WorkerSpawner<W, CODEC>where W: Clone + Worker, CODEC: Clone + Codec, <W as Worker>::Output: Clone,

source§

fn clone(&self) -> WorkerSpawner<W, CODEC>

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, CODEC> Debug for WorkerSpawner<W, CODEC>where W: Worker, CODEC: Codec,

source§

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

Formats the value using the given formatter. Read more
source§

impl<W, CODEC> Default for WorkerSpawner<W, CODEC>where W: Worker + 'static, CODEC: Codec,

source§

fn default() -> WorkerSpawner<W, CODEC>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<W, CODEC = Bincode> !RefUnwindSafe for WorkerSpawner<W, CODEC>

§

impl<W, CODEC = Bincode> !Send for WorkerSpawner<W, CODEC>

§

impl<W, CODEC = Bincode> !Sync for WorkerSpawner<W, CODEC>

§

impl<W, CODEC> Unpin for WorkerSpawner<W, CODEC>where CODEC: Unpin, W: Unpin,

§

impl<W, CODEC = Bincode> !UnwindSafe for WorkerSpawner<W, CODEC>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.