pub unsafe trait Blocker {
    // Required method
    fn block_on<T, F: Future<Output = T>>(&self, f: F) -> T;
}

Required Methods§

source

fn block_on<T, F: Future<Output = T>>(&self, f: F) -> T

Object Safety§

This trait is not object safe.

Implementors§