Skip to main content

PendingHandle

Trait PendingHandle 

Source
pub trait PendingHandle: Send + 'static { }
Expand description

A handle to a submitted batch, returned by BatchBackend::submit.

The handle is opaque to the scheduler — backends define their own state.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: Send + 'static> PendingHandle for T

Blanket impl: anything Send + ’static can be a PendingHandle.