pub trait Resolvable {
    type To: Sized + Send;
}

Required Associated Types§

Implementors§

source§

impl<C, To> Resolvable for ResolveClosure<C, To>
where To: Sized + Send, C: FnOnce() -> To + Send,

§

type To = To

source§

impl<F, To> Resolvable for ResolveFuture<F, To>
where To: Sized + Send, F: Future<Output = To> + Send,

§

type To = To