Enum deadpool_postgres::Runtime
pub enum Runtime {
Tokio1,
AsyncStd1,
}Expand description
Enumeration for picking a runtime implementation.
Variants§
Implementations§
§impl Runtime
impl Runtime
pub async fn timeout<F>(
&self,
duration: Duration,
future: F
) -> impl Future<Output = Option<<F as Future>::Output>>where
F: Future,
pub async fn timeout<F>(
&self,
duration: Duration,
future: F
) -> impl Future<Output = Option<<F as Future>::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.
pub async fn spawn_blocking<F, R>(
&self,
f: F
) -> impl Future<Output = Result<R, SpawnBlockingError>>where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
pub async fn spawn_blocking<F, R>(
&self,
f: F
) -> impl Future<Output = Result<R, SpawnBlockingError>>where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
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: FnOnce() + Send + 'static,
pub fn spawn_blocking_background<F>(
&self,
f: F
) -> Result<(), SpawnBlockingError>where
F: FnOnce() + Send + 'static,
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.