[−][src]Struct scoped_spawn::remote_scope::RemoteScope
A scope for a child task.
Implementations
impl RemoteScope[src]
pub fn new() -> Self[src]
Constructs a new RemoteScope.
pub fn spawner(&mut self) -> RemoteSpawner[src]
Returns a spawner for the scoped child task.
It may be cheaper if this method is not called.
pub fn wrap<ParentCancelReceiver, ParentDoneSender, Fut, Done>(
self,
signal: ChildSignals<ParentCancelReceiver, ParentDoneSender>,
fut: Fut,
done: Done
) -> impl Future<Output = ()> where
ParentCancelReceiver: SignalReceiver,
ParentDoneSender: SignalSender,
Fut: Future<Output = ()>,
Done: FnOnce(), [src]
self,
signal: ChildSignals<ParentCancelReceiver, ParentDoneSender>,
fut: Fut,
done: Done
) -> impl Future<Output = ()> where
ParentCancelReceiver: SignalReceiver,
ParentDoneSender: SignalSender,
Fut: Future<Output = ()>,
Done: FnOnce(),
Wraps signal, fut, and done into a future suitable to be run in a new task.
The returned future will handle all signals for structured concurrency. It will also handle termination as described in the library overview.
Trait Implementations
impl Default for RemoteScope[src]
fn default() -> RemoteScope[src]
Auto Trait Implementations
impl RefUnwindSafe for RemoteScope
impl Send for RemoteScope
impl Sync for RemoteScope
impl Unpin for RemoteScope
impl UnwindSafe for RemoteScope
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,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,