Struct ScopedSpawner

Source
pub struct ScopedSpawner<Spawn: Spawn + Clone + Send + Sync> { /* private fields */ }
Expand description

A scoped spawner.

This type implements ScopedSpawn.

Implementations§

Source§

impl<Spawn: Spawn + Clone + Send + Sync> ScopedSpawner<Spawn>

Source

pub fn new(spawner: Spawn) -> Self

Constructs a new scoped spawner from a traditional spawner.

Trait Implementations§

Source§

impl<Spawn: Clone + Spawn + Clone + Send + Sync> Clone for ScopedSpawner<Spawn>

Source§

fn clone(&self) -> ScopedSpawner<Spawn>

Returns a duplicate 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<Spawn: Spawn + Clone + Send + Sync> ScopedSpawn for ScopedSpawner<Spawn>

Source§

type CancelSender = RemoteCancelSenderWithSignal

The type of the signal sender for parents to initiate task termination.
Source§

type DoneReceiver = RemoteDoneReceiverWithSignal

The type of the signal receiver for parents to wait for task termination.
Source§

type FutureCancelSender = RemoteCancelSenderWithSignal

The type of the signal sender for parents to initiate task termination, when the spawned object is only a future.
Source§

type FutureDoneReceiver = RemoteDoneReceiverWithSignal

The type of the signal receiver for parents to wait for task termination, when the spawned object is only a future.
Source§

type Raw = RemoteSpawner

The type of the raw spawner.
Source§

fn spawn<Fut, Fun, Done>(&self, fun: Fun, done: Done) -> Result<(), SpawnError>
where Fut: Future<Output = ()> + Send + 'static, Fun: FnOnce(Self) -> Fut, Done: FnOnce() + Send + 'static,

Spawns a task to run the future returned by fun. The spawned task will call done after all its children terminate.
Source§

fn spawn_with_signal<Fut, Fun, Done>( &self, fun: Fun, done: Done, ) -> Result<ParentSignals<Self::CancelSender, Self::DoneReceiver>, SpawnError>
where Fut: Future<Output = ()> + Send + 'static, Fun: FnOnce(Self) -> Fut, Done: FnOnce() + Send + 'static,

Spawns a task to run the future returned by fun. The spawned task will call done after all its children terminate. Read more
Source§

fn spawn_future<Fut, Done>( &self, fut: Fut, done: Done, ) -> Result<(), SpawnError>
where Fut: Future<Output = ()> + Send + 'static, Done: FnOnce() + Send + 'static,

Spawns a task to run fut. The spawned task will call done after all its children terminate.
Source§

fn spawn_future_with_signal<Fut, Done>( &self, fut: Fut, done: Done, ) -> Result<ParentSignals<Self::FutureCancelSender, Self::FutureDoneReceiver>, SpawnError>
where Fut: Future<Output = ()> + Send + 'static, Done: FnOnce() + Send + 'static,

Spawns a task to run fut. The spawned task will call done after all its children terminate. Read more
Source§

fn as_raw(&self) -> &Self::Raw

Returns a reference to the raw spawner.
Source§

fn into_raw(self) -> Self::Raw

Converts self into the raw spawner.

Auto Trait Implementations§

§

impl<Spawn> Freeze for ScopedSpawner<Spawn>
where Spawn: Freeze,

§

impl<Spawn> RefUnwindSafe for ScopedSpawner<Spawn>
where Spawn: RefUnwindSafe,

§

impl<Spawn> Send for ScopedSpawner<Spawn>

§

impl<Spawn> Sync for ScopedSpawner<Spawn>

§

impl<Spawn> Unpin for ScopedSpawner<Spawn>
where Spawn: Unpin,

§

impl<Spawn> UnwindSafe for ScopedSpawner<Spawn>
where Spawn: UnwindSafe,

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.