Trait async_ffi::ContextExt [−][src]
pub trait ContextExt { fn with_ffi_context<T, F: FnOnce(&mut FfiContext<'_>) -> T>(
&mut self,
closure: F
) -> T; }
Expand description
Helper trait to provide convenience methods for converting a std::task::Context
to FfiContext
Required methods
fn with_ffi_context<T, F: FnOnce(&mut FfiContext<'_>) -> T>(
&mut self,
closure: F
) -> T
fn with_ffi_context<T, F: FnOnce(&mut FfiContext<'_>) -> T>(
&mut self,
closure: F
) -> T
Runs a closure with the std::task::Context
as a FfiContext
.