Trait async_ffi::FutureExt[][src]

pub trait FutureExt<T> {
    fn into_ffi(self) -> FfiFuture<T>

Notable traits for FfiFuture<T>

impl<T> Future for FfiFuture<T> type Output = T;
; }

Helper trait to provide conversion method to FfiFuture on all Futures implementing Send.

See module level documentation for more details.

Required methods

fn into_ffi(self) -> FfiFuture<T>

Notable traits for FfiFuture<T>

impl<T> Future for FfiFuture<T> type Output = T;
[src]

Convert a Rust Future into a FFI-compatible FfiFuture.

Loading content...

Implementors

impl<T, F> FutureExt<T> for F where
    T: 'static,
    F: Future<Output = T> + Send + 'static, 
[src]

Loading content...