Enum lucas_test::async_runtime::RuntimeHandle
source · [−]pub enum RuntimeHandle {
Tokio(TokioHandle),
}Expand description
A handle to the async runtime
Variants
Tokio(TokioHandle)
The tokio handle.
Implementations
sourceimpl RuntimeHandle
impl RuntimeHandle
sourcepub fn inner(&self) -> &TokioHandle
pub fn inner(&self) -> &TokioHandle
Gets a reference to the TokioHandle.
sourcepub fn spawn_blocking<F, R>(&self, func: F) -> JoinHandle<R>ⓘNotable traits for JoinHandle<T>impl<T> Future for JoinHandle<T> type Output = Result<T>; where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
pub fn spawn_blocking<F, R>(&self, func: F) -> JoinHandle<R>ⓘNotable traits for JoinHandle<T>impl<T> Future for JoinHandle<T> type Output = Result<T>; where
F: FnOnce() -> R + Send + 'static,
R: Send + 'static,
Runs the provided function on an executor dedicated to blocking operations.
sourcepub fn spawn<F: Future>(&self, task: F) -> JoinHandle<F::Output>ⓘNotable traits for JoinHandle<T>impl<T> Future for JoinHandle<T> type Output = Result<T>; where
F: Future + Send + 'static,
F::Output: Send + 'static,
pub fn spawn<F: Future>(&self, task: F) -> JoinHandle<F::Output>ⓘNotable traits for JoinHandle<T>impl<T> Future for JoinHandle<T> type Output = Result<T>; where
F: Future + Send + 'static,
F::Output: Send + 'static,
Spawns a future onto the runtime.
Trait Implementations
sourceimpl Clone for RuntimeHandle
impl Clone for RuntimeHandle
sourcefn clone(&self) -> RuntimeHandle
fn clone(&self) -> RuntimeHandle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for RuntimeHandle
impl Send for RuntimeHandle
impl Sync for RuntimeHandle
impl Unpin for RuntimeHandle
impl !UnwindSafe for RuntimeHandle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more