Trait Resolvable

Source
pub trait Resolvable {
    type To: Sized;
}
Expand description

A resolvable execution, either sync or async

Required Associated Types§

Implementors§

Source§

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

Source§

type To = To

Source§

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

Source§

type To = To