Enum deadpool_runtime::Runtime
source · pub enum Runtime {}
Expand description
Enumeration for picking a runtime implementation.
Implementations§
source§impl Runtime
impl Runtime
sourcepub async fn timeout<F>(
&self,
duration: Duration,
future: F,
) -> Option<F::Output>where
F: Future,
pub async fn timeout<F>(
&self,
duration: Duration,
future: F,
) -> Option<F::Output>where
F: Future,
Requires a Future
to complete before the specified duration
has
elapsed.
If the future
completes before the duration
has elapsed, then the
completed value is returned. Otherwise, an error is returned and
the future
is canceled.
sourcepub async fn spawn_blocking<F, R>(&self, f: F) -> Result<R, SpawnBlockingError>
pub async fn spawn_blocking<F, R>(&self, f: F) -> Result<R, SpawnBlockingError>
Runs the given closure on a thread where blocking is acceptable.
§Errors
See SpawnBlockingError
for details.
sourcepub fn spawn_blocking_background<F>(
&self,
f: F,
) -> Result<(), SpawnBlockingError>
pub fn spawn_blocking_background<F>( &self, f: F, ) -> Result<(), SpawnBlockingError>
Runs the given closure on a thread where blocking is acceptable.
It works similar to Runtime::spawn_blocking()
but doesn’t return a
Future
and is meant to be used for background tasks.
§Errors
See SpawnBlockingError
for details.
Trait Implementations§
source§impl PartialEq for Runtime
impl PartialEq for Runtime
impl Copy for Runtime
impl Eq for Runtime
impl StructuralPartialEq for Runtime
Auto Trait Implementations§
impl Freeze for Runtime
impl RefUnwindSafe for Runtime
impl Send for Runtime
impl Sync for Runtime
impl Unpin for Runtime
impl UnwindSafe for Runtime
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)