Enum deadpool_postgres::Runtime [−]
pub enum Runtime {
Tokio1,
AsyncStd1,
}
Expand description
Enumeration for picking a runtime implementation.
Variants
tokio
1.0 runtime.
async-std
1.0 runtime.
Implementations
impl Runtime
impl Runtime
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.
pub async fn spawn_blocking<F, R>(
&'_ self,
f: F
) -> Result<R, SpawnBlockingError> where
F: 'static + FnOnce() -> R + Send,
R: 'static + Send,
pub async fn spawn_blocking<F, R>(
&'_ self,
f: F
) -> Result<R, SpawnBlockingError> where
F: 'static + FnOnce() -> R + Send,
R: 'static + Send,
Runs the given closure on a thread where blocking is acceptable.
Errors
See [SpawnBlockingError
] for details.
pub fn spawn_blocking_background<F>(
&self,
f: F
) -> Result<(), SpawnBlockingError> where
F: 'static + FnOnce() + Send,
pub fn spawn_blocking_background<F>(
&self,
f: F
) -> Result<(), SpawnBlockingError> where
F: 'static + FnOnce() + Send,
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
Auto Trait Implementations
impl RefUnwindSafe for Runtime
impl UnwindSafe for Runtime
Blanket Implementations
Mutably borrows from an owned value. Read more