Enum deadpool_redis::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.
Trait Implementations§
impl Copy for Runtime
impl Eq for Runtime
impl StructuralEq for Runtime
impl StructuralPartialEq for Runtime
Auto Trait Implementations§
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